Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mbackenkoehler committed Jan 29, 2024
1 parent 2030f0d commit 2db7bd4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Cache Conda packages
uses: actions/cache@v3
with:
path: ~/.conda/pkgs
path: /home/runner/conda_pkgs_dir
key: ${{ runner.os }}-conda-
restore-keys: |
${{ runner.os }}-conda-
Expand All @@ -57,7 +57,15 @@ jobs:
mamba env create -f environment.yml -n ${{ matrix.directory }}
conda activate $(basename ${{ matrix.directory }})
mamba install pytest pytest-xdist pytest-cov nbval shyaml -c conda-forge -y
- name: Conda info
shell: bash -el {0}
run: |
conda info
- name: Test Talktorial
shell: bash -el {0}
run: |
PYTEST_ARGS="--nbval-lax --nbval-current-env --dist loadscope"
pytest $PYTEST_ARGS .
working-directory: teachopencadd/talktorials/${{ matrix.directory }}
Expand Down

0 comments on commit 2db7bd4

Please sign in to comment.