You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/stage-2-test.yaml
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -82,16 +82,21 @@ jobs:
82
82
- name: Test shell
83
83
run: make debug-shell
84
84
85
-
- name: Test pytest exit code
86
-
run: poetry run pytest -m 'not system and not integration' --ignore manage_breast_screening/notifications/tests/dependencies --cov --cov-report term-missing:skip-covered; echo $$?
85
+
- name: Inspect tools
86
+
run: |
87
+
make --version
88
+
env
87
89
88
-
- name: 'Run unit test suite'
89
-
run: make test-unit
90
+
- name: Test pytest exit code
90
91
env:
91
92
DATABASE_NAME: postgres
92
93
DATABASE_PASSWORD: postgres
93
94
DATABASE_USER: postgres
94
95
DATABASE_HOST: localhost
96
+
run: poetry run pytest -m 'not system and not integration' --ignore manage_breast_screening/notifications/tests/dependencies --cov --cov-report term-missing:skip-covered; echo $$?
0 commit comments