Skip to content

Commit

Permalink
Catch up with file mmvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewHambley committed Jun 28, 2024
1 parent a9a58d8 commit b663a41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
run: |
pip install -e fab/.[dev]
pip install pytest
python -m mypy source tests
python -m mypy fab/source fab/tests
- name: Code style check with flake8
run: |
pip install -e fab/.[dev]
flake8 . --count --show-source --statistics
flake8 fab --count --show-source --statistics
- name: Unit tests with Pytest
run: |
pip install fab/.[tests]
python -m pytest --cov=fab tests/unit_tests
python -m pytest --cov=fab fab/tests/unit_tests
- name: System tests with Pytest
run: |
pip install fab/.[tests]
python -m pytest --cov=fab tests/system_tests
python -m pytest --cov=fab fab/tests/system_tests

0 comments on commit b663a41

Please sign in to comment.