Skip to content

Commit

Permalink
tools: update GitHub actions to use the actual way of running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
palazzem committed Aug 25, 2023
1 parent c1ea9e3 commit d0ba14b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- upstream
pull_request:

permissions:
Expand All @@ -31,8 +30,7 @@ jobs:
- name: Upgrade pip and install required tools
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install tox -U
pip install tox
- name: Lint codebase
run: tox -e lint
4 changes: 1 addition & 3 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- upstream
pull_request:

permissions:
Expand Down Expand Up @@ -37,8 +36,7 @@ jobs:
- name: Upgrade pip and install required tools
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install tox -U
pip install tox
- name: Test with tox environments
run: tox

0 comments on commit d0ba14b

Please sign in to comment.