We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 654ec65 commit deafbe3Copy full SHA for deafbe3
2 files changed
.github/workflows/ci.yml
@@ -65,7 +65,7 @@ jobs:
65
with:
66
path: |
67
.venv
68
- key: ci-venv-${{ env.PIPELINE_FAMILY }}-${{ hashFiles('requirements/base.txt') }}
+ key: ci-venv-${{ env.PIPELINE_FAMILY }}-${{ hashFiles('requirements/base.txt', 'requirements/test.txt') }}
69
- name: Run core tests
70
run: |
71
source .venv/bin/activate
Makefile
@@ -95,7 +95,7 @@ run-web-app:
95
## test: runs core tests
96
.PHONY: test
97
test:
98
- PYTHONPATH=. python3 -m pytest -n auto -v test_${PIPELINE_PACKAGE} --cov=${PACKAGE_NAME} --cov-report term-missing
+ PYTHONPATH=. pytest -n auto -v test_${PIPELINE_PACKAGE} --cov=${PACKAGE_NAME} --cov-report term-missing
99
100
# Setting a low bar here - need more tests!
101
.PHONY: check-coverage
0 commit comments