Skip to content

Commit

Permalink
CI: Exclude T019 from tests under Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiquesydow committed Sep 8, 2021
1 parent c9bba5f commit d1e92f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ jobs:
shell: bash -l {0}
run: |
PYTEST_ARGS="--nbval-lax --current-env --dist loadscope --numprocesses 2"
pytest $PYTEST_ARGS teachopencadd/talktorials/T*/talktorial.ipynb
if [ "$RUNNER_OS" != "Windows" ]; then
pytest $PYTEST_ARGS teachopencadd/talktorials/T*/talktorial.ipynb
else
pytest $PYTEST_ARGS teachopencadd/talktorials/ --ignore-glob=teachopencadd/talktorials/T019* --ignore=teachopencadd/talktorials/T001_query_chembl/data/all_chembl_activities.ipynb
fi
format:
name: Black
Expand Down

0 comments on commit d1e92f4

Please sign in to comment.