Skip to content

Commit

Permalink
chore: another pipeline try
Browse files Browse the repository at this point in the history
  • Loading branch information
jlerat authored Nov 1, 2023
1 parent c62bc81 commit 88fc5b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,22 @@ jobs:
- name: Run tests
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate env_mini
pytest --cov=hydrodiy --cov-config=.coveragerc --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html hydrodiy
- name: Upload pytest test results
uses: actions/upload-artifact@v3
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
name: pytest-results
path: junit/test-results.xml

# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

- name: Run examples
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate env_mini
python examples/run_all_examples.py

0 comments on commit 88fc5b2

Please sign in to comment.