tests should pass in CI

This commit is contained in:
Nicholas Albion
2023-09-09 11:43:38 +10:00
parent 46b84315ec
commit c813d81d41
2 changed files with 3 additions and 2 deletions

View File

@@ -33,11 +33,12 @@ jobs:
pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# stop the build if there are Python syntax errors or undefined names
#ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
#ruff --format=github --target-version=py37 .
- name: Run tests
run: |
pip install pytest
pytest
cd pilot
PYTHONPATH=. pytest