We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dfd7a9 commit da3a1b4Copy full SHA for da3a1b4
.github/workflows/build_and_test.yml
@@ -31,7 +31,7 @@ jobs:
31
- name: Setup Miniconda using Python ${{ matrix.python-version }}
32
uses: conda-incubator/setup-miniconda@v3
33
with:
34
- miniforge-variant: Mambaforge
+ miniconda-version: "latest"
35
auto-update-conda: true
36
activate-environment: usempl-plots-dev
37
environment-file: environment.yml
@@ -50,8 +50,9 @@ jobs:
50
shell: bash -l {0}
51
working-directory: ./
52
run: |
53
- pytest -m 'not local' --cov=./ --cov-report=xml --maxfail=0
+ python -m pytest -m 'not local' --cov=./ --cov-report=xml --maxfail=0
54
- name: Upload coverage to Codecov
55
+ if: matrix.os == 'ubuntu-latest' && contains(github.repository, 'OpenSourceEcon/usempl-plots')
56
uses: codecov/codecov-action@v4
57
58
files: ./coverage.xml
0 commit comments