Skip to content
Snippets Groups Projects
Commit 78f802e3 authored by David Schäfer's avatar David Schäfer
Browse files

Merge branch 'ci' into 'develop'

-Werror (warnings as errors) with every pytest call

See merge request !332
parents 872f71cb 8800ff4c
No related branches found
No related tags found
2 merge requests!370Release 2.0,!332-Werror (warnings as errors) with every pytest call
Pipeline #49283 passed with stage
in 5 minutes and 30 seconds
......@@ -34,7 +34,7 @@ python38:
except:
- schedules
script:
- pytest tests/core tests/funcs tests/integration dios/test
- pytest tests/core tests/funcs tests/integration dios/test -Werror
- python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv
......@@ -45,7 +45,7 @@ python39:
- schedules
image: python:3.9
script:
- pytest tests/core tests/funcs tests/integration
- pytest tests/core tests/funcs tests/integration dios/test -Werror
- python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv
......@@ -65,7 +65,7 @@ coverage:
allow_failure: true
script:
- pip install pytest-cov coverage
- pytest --cov=saqc tests/core tests/funcs
- pytest --cov=saqc tests/core tests/funcs -Werror
after_script:
- coverage xml
......@@ -105,7 +105,7 @@ fuzzy:
only:
- schedules
script:
- pytest tests/fuzzy
- pytest tests/fuzzy -Werror
# test lib saqc
......@@ -114,5 +114,5 @@ testLib:
only:
- schedules
script:
- pytest tests/lib
- pytest tests/lib -Werror
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment