Skip to content

Commit

Permalink
reinstate commented GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
widdowquinn committed Feb 19, 2024
1 parent 138cc51 commit 95219d8
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions .github/workflows/build-on-push-to-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
- name: Install pip
run: python -m pip install --upgrade pip

# - name: Install Development Requirements
# run: conda install --file requirements-dev.txt -y
- name: Install Development Requirements
run: conda install --file requirements-dev.txt -y

# - name: Install Requirements
# run: conda install --file requirements.txt -y
- name: Install Requirements
run: conda install --file requirements.txt -y

# - name: Install third-party tools
# run: conda install --file requirements-thirdparty.txt -y
- name: Install third-party tools
run: conda install --file requirements-thirdparty.txt -y

- name: Install FastANI
run: conda install --file requirements-fastani.txt -y
Expand All @@ -53,14 +53,13 @@ jobs:
- name: Install pyani
run: pip install -e .

# - name: Run Fast Tests with pytest
# run: python -m pytest -v -m "not slow" --cov=pyani --cov-report xml:.coverage_fast.xml

# - name: Upload pytest Results
# uses: actions/upload-artifact@v4
# with:
# name: pytest-results-3.11
# path: /pyani/test-results-3.11.xml
# retention-days: 1
# if: ${{ always() }}
- name: Run Fast Tests with pytest
run: python -m pytest -v -m "not slow" --cov=pyani --cov-report xml:.coverage_fast.xml

- name: Upload pytest Results
uses: actions/upload-artifact@v4
with:
name: pytest-results-3.11
path: /pyani/test-results-3.11.xml
retention-days: 1
if: ${{ always() }}

0 comments on commit 95219d8

Please sign in to comment.