Skip to content

Commit

Permalink
Try tox for tests, black
Browse files Browse the repository at this point in the history
  • Loading branch information
Mouse Reeve committed Nov 5, 2023
1 parent 9141a25 commit aefbf41
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: psf/[email protected]
with:
version: 22.12.0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox==4.11.3
- name: Run black
run: |
tox -e black
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
pip install tox==4.11.3
- name: Run Tests
run: |
pytest
tox -e py39

0 comments on commit aefbf41

Please sign in to comment.