mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-03 04:52:09 -05:00
ci(fastqc): Run pytest-workflow instead of workflow
This will check for the actual output files and their contents not just whether the module runs or not.
This commit is contained in:
parent
07017f401e
commit
6d857a2584
1 changed files with 8 additions and 1 deletions
9
.github/workflows/fastqc.yml
vendored
9
.github/workflows/fastqc.yml
vendored
|
@ -26,5 +26,12 @@ jobs:
|
||||||
wget -qO- get.nextflow.io | bash
|
wget -qO- get.nextflow.io | bash
|
||||||
sudo mv nextflow /usr/local/bin/
|
sudo mv nextflow /usr/local/bin/
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: "3.x"
|
||||||
|
- name: Install dependencies
|
||||||
|
run: python -m pip install --upgrade pip pytest-workflow
|
||||||
|
|
||||||
# Test the module
|
# Test the module
|
||||||
- run: nextflow run ./software/fastqc/test/ -profile docker
|
- run: pytest --tag fastqc --symlink
|
||||||
|
|
Loading…
Reference in a new issue