Skip to content
Snippets Groups Projects

Wrapper

Closed MihaelaZavolan requested to merge wrapper into main
2 files
+ 37
11
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
11
image: python:3.9-slim-buster
stages:
stages:
- qc
- qc
- test
- test
qc_1:
qc_1:
stage: qc
stage: qc
image: python:3.9-slim-buster
before_script:
before_script:
- pip install -r requirements.txt
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
- pip install -r requirements_dev.txt
- pip install -e .
- pip install -e .
script:
script:
- flake8 src/ setup.py
- flake8 src/ setup.py
- coverage run --source src/ -m pytest
- coverage run --source src/ -m pytest
@@ -20,12 +17,7 @@ qc_1:
@@ -20,12 +17,7 @@ qc_1:
test_1:
test_1:
stage: test
stage: test
image: nextflow/nextflow:21.10.3
before_script:
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
- pip install -e .
script:
script:
- python -m pytest
- nextflow main.nf
Loading