Skip to content
Snippets Groups Projects
Commit 00ac4a9a authored by Christoph Harmel's avatar Christoph Harmel
Browse files

fix: CI

parent d6998b89
No related branches found
No related tags found
1 merge request!31Ci
Pipeline #14860 failed
......@@ -18,12 +18,18 @@ build-job: # This job runs in the build stage, which runs first.
unit-test-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install -e .
- coverage run --source readsequencer -m pytest
- coverage report -m
lint-test-job: # This job also runs in the test stage.
stage: test # It can run at the same time as unit-test-job (in parallel).
script:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install -e .
- flake8 --docstring-convention google readsequencer/ tests/
- pylint readsequencer/ tests/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment