Skip to content
Snippets Groups Projects
Commit 07605c0d authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Add initial integration CI test

parent c434dbd9
Branches
Tags
3 merge requests!37v0.0.1,!11Develop,!10Resolve "Add integration CI test"
Pipeline #5672 failed with stages
in 8 minutes and 11 seconds
......@@ -8,6 +8,7 @@ before_script:
stages:
- unit
- integration
getBag:
stage: unit
......@@ -36,4 +37,14 @@ trimData_pe:
script:
- if [ `nproc` -gt 8 ]; then ncore=8; else ncore=`nproc`; fi
- singularity run 'docker://bicf/trimgalore:1.1' trim_galore --gzip -q 25 --illumina --length 35 --paired --basename Q-Y5JA -j ${ncore} ./test_data/fastq/Q-Y5JA.R1.fastq.gz ./test_data/fastq/Q-Y5JA.R2.fastq.gz
- pytest -m trimData_pe
\ No newline at end of file
- pytest -m trimData_pe
integration_se:
stage: integration
script:
- nextflow run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID 16-1ZX4
integration_pe:
stage: integration
script:
- nextflow run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID Q-Y5JA
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment