Skip to content

Commit

Permalink
Update run_examples.yml to run only some notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
JustGlowing authored Jan 17, 2024
1 parent c0c852d commit f2be6c4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
python -m pip install --upgrade pip
python -m pip install numpy flake8 pycodestyle pytest nbval pandas minisom matplotlib
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Running BasicUsage.ipynb
- name: Running notebooks with examples
run: |
pytest --nbval-lax examples/*.ipynb
pytest --nbval-lax examples/BasicUsage.ipynb
pytest --nbval-lax examples/Clustering.ipynb
pytest --nbval-lax examples/ColorQuantization.ipynb
pytest --nbval-lax examples/TravellingSalesmanProblem.ipynb

0 comments on commit f2be6c4

Please sign in to comment.