Skip to content

Commit 86580f2

Browse files
committed
Fix coverage
1 parent 7006390 commit 86580f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949
5050
- name: Run tests
5151
run: |
52-
if [[ '$JOBTYPE' == 'lint' ]]; then
52+
if [[ "$JOBTYPE" == "lint" ]]; then
5353
# Run flake8 via pre-commit instead.
5454
#- flake8 . # Use --exit-zero to ignore failure
5555
pre-commit install
5656
pre-commit run --all-files
57-
elif [[ '$JOBTYPE' == 'coverage' ]]; then
57+
elif [[ "$JOBTYPE" == "coverage" ]]; then
5858
pytest tests --ignore=dapper/mods/QG --cov=dapper --cov-report term-missing
5959
else
6060
pytest tests

0 commit comments

Comments
 (0)