-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from LUMC/release_2.0.1
Release 2.0.1
- Loading branch information
Showing
8 changed files
with
129 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,38 +60,45 @@ jobs: | |
- name: Upload coverage report | ||
uses: codecov/codecov-action@v1 | ||
|
||
test-functional: | ||
test-functional-python-tools: | ||
runs-on: ubuntu-latest | ||
needs: lint | ||
strategy: | ||
matrix: | ||
python-version: ["3.7"] | ||
test-program: [cromwell, snakemake, miniwdl] | ||
test-program: [snakemake, miniwdl] | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
# Setup python program requirements | ||
- name: Set up Python ${{ matrix.python-version }} | ||
if: ${{ matrix.test-program != 'cromwell' }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install tox | ||
if: ${{ matrix.test-program != 'cromwell' }} | ||
run: pip install tox | ||
|
||
# Setup cromwell requirements | ||
- name: Test | ||
shell: bash -l {0} # Needed for conda | ||
run: tox -e ${{ matrix.test-program }} | ||
|
||
test-functional-other: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test-program: [ cromwell, nextflow ] | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Install conda | ||
if: ${{ matrix.test-program == 'cromwell' }} | ||
uses: conda-incubator/[email protected] # https://github.com/conda-incubator/setup-miniconda. | ||
with: | ||
channels: conda-forge,defaults | ||
- name: Install cromwell and tox | ||
channels: conda-forge,bioconda,defaults | ||
installer-url: https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh | ||
channel-priority: true | ||
|
||
- name: Install test program and tox | ||
shell: bash -l {0} # Needed for conda | ||
if: ${{ matrix.test-program == 'cromwell' }} | ||
run: conda install cromwell tox | ||
run: mamba install ${{ matrix.test-program }} tox | ||
|
||
# Test | ||
- name: Test | ||
shell: bash -l {0} # Needed for conda | ||
run: tox -e ${{ matrix.test-program }} | ||
run: tox -e ${{ matrix.test-program }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters