Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcantor22 committed Aug 8, 2024
1 parent c51eb0e commit e33eaa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: echo "PYTHONPATH=." >> $GITHUB_ENV

- name: Install packages
run: pip install -U pip; pip install cryptography; pip install jupyter_client==6.1.12; pip install ipython_genutils==0.2.0; pip install nbconvert==5.6.1; pip install rpy2; pip install ipykernel; pip install pandas==1.2.3; pip install pillow; pip install -U Jinja2==3.0
run: pip install -U pip; pip install cryptography; pip install jupyter_client==6.1.12; pip install ipython_genutils==0.2.0; pip install nbconvert==5.6.1; pip install rpy2; pip install ipykernel; pip install pandas==1.2.3; pip install pillow; pip install -U Jinja2==3.0; pip install coverage;

- name: install pandoc
run: sudo apt-get install pandoc;
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
with:
python-version: 3.9
- name: Install packages
run: pip install -U pip; sudo apt-get install tidy environment-modules -y; pip install cryptography;
run: pip install -U pip; sudo apt-get install tidy environment-modules coverage -y; pip install cryptography; pip install coverage;

- name: Set PYTHONPATH
run: echo "PYTHONPATH=." >> $GITHUB_ENV
Expand All @@ -107,7 +107,7 @@ jobs:

- name: Unit Tests
run: |
coverage run --parallel-mode --concurrency=multiprocessing ./mmeds/tests/unit/test.py adder authentication database documents error formatter tool tools uploader util validate spawn snakemake;
coverage run --parallel-mode --concurrency=multiprocessing ./mmeds/tests/unit/test.py adder authentication database documents error formatter tools uploader util validate spawn snakemake;
- name: Upload Unit coverage
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit e33eaa8

Please sign in to comment.