Skip to content

Commit 42e8407

Browse files
Merge pull request #3 from InformaticsMatters/prototype-work-alan
Attempt to fix test code DeprecationWarning
2 parents 7c728dc + 4654454 commit 42e8407

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Test
5252
run: |
5353
poetry run pre-commit run --all-files
54-
poetry run coverage run --module pytest
54+
poetry run coverage run --module pytest -Werror
5555
poetry run coverage report
5656
- name: Build
5757
run: |

pytest.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ markers =
88
liveness: Rapid tests executed on a installation
99
soak: Long tests executed at night
1010
unit: a test executed during build
11+
filterwarnings =
12+
ignore:.*use of fork\(\) may lead to deadlocks in the child.*:DeprecationWarning:multiprocessing.popen_fork:67

0 commit comments

Comments
 (0)