We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7006390 commit 86580f2Copy full SHA for 86580f2
.github/workflows/tests.yml
@@ -49,12 +49,12 @@ jobs:
49
50
- name: Run tests
51
run: |
52
- if [[ '$JOBTYPE' == 'lint' ]]; then
+ if [[ "$JOBTYPE" == "lint" ]]; then
53
# Run flake8 via pre-commit instead.
54
#- flake8 . # Use --exit-zero to ignore failure
55
pre-commit install
56
pre-commit run --all-files
57
- elif [[ '$JOBTYPE' == 'coverage' ]]; then
+ elif [[ "$JOBTYPE" == "coverage" ]]; then
58
pytest tests --ignore=dapper/mods/QG --cov=dapper --cov-report term-missing
59
else
60
pytest tests
0 commit comments