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:
Edmund Miller 2020-11-16 09:37:22 -06:00
parent 07017f401e
commit 6d857a2584
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D

View file

@ -26,5 +26,12 @@ jobs:
wget -qO- get.nextflow.io | bash
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
- run: nextflow run ./software/fastqc/test/ -profile docker
- run: pytest --tag fastqc --symlink