@@ -12,24 +12,27 @@ whitelist_externals =
1212 test
1313 wc
1414 make
15- xargs
16- find
1715commands =
1816 ; Ensure ipywidgets Jupyter extension is installed
1917 jupyter nbextension enable --py --sys-prefix widgetsnbextension
2018
2119 ; Run unit tests and generate code coverage report
2220 pytest --verbose --cov-config =tox.ini --cov =" {envsitepackagesdir}/mumot" tests
2321
24- ; Ensure user manual, test and demo Notebooks run *without errors* (do not check for regressions yet)
22+ ; Ensure the user manual Notebook runs *without errors* (do not check for regressions yet)
2523 ; (add --nbdime if running tox locally and want to visualise/explore diffs in web browser)
26- pytest --verbose --maxfail =1 --nbval-lax --nbval-cell-timeout =120 --cov-config =tox.ini --cov =" {envsitepackagesdir}/mumot" --cov-append \
27- docs/*.ipynb \
28- TestNotebooks/*.ipynb \
29- TestNotebooks/MiscTests/*.ipynb \
30- DemoNotebooks/*
24+ pytest --verbose --maxfail =1 --nbval-lax --nbval-cell-timeout =120 docs/MuMoTuserManual.ipynb
3125
32- ; Ensure the user manual and regression test Notebooks do not show regressions (TODO; leave commented)
26+ ; Ensure test Notebooks run *without errors* (do not check for regressions yet)
27+ ; (add --nbdime if running tox locally and want to visualise/explore diffs in web browser)
28+ pytest --verbose --maxfail =1 --nbval-lax --nbval-cell-timeout =120 \
29+ --cov-config =tox.ini --cov =" {envsitepackagesdir}/mumot" TestNotebooks
30+
31+ ; Ensure demo Notebooks run *without errors* (do not check for regressions yet)
32+ ; (add --nbdime if running tox locally and want to visualise/explore diffs in web browser)
33+ pytest --verbose --maxfail =1 --nbval-lax --nbval-cell-timeout =120 DemoNotebooks
34+
35+ ; Ensure the main regression test Notebook does not show regressions (TODO; leave commented)
3336 ; (add --nbdime if running tox locally and want to visualise/explore diffs in web browser)
3437 ; pytest --verbose --maxfail=1 --nbval --nbval-cell-timeout=120 --cov-config=tox.ini --cov="{envsitepackagesdir}/mumot" --cov-append TestNotebooks/MuMoTtest.ipynb
3538
0 commit comments