MuMoT
MuMoT copied to clipboard
Multiscale Modelling Tool - mathematical modelling without the maths
See https://twitter.com/natfriedman/status/1420122675813441540
In [this GitHub Actions job](https://github.com/DiODeProject/MuMoT/runs/730054858?check_suite_focus=true): ``` TestNotebooks/MiscTests/MuMoTtest_NoiseFixedPoints::ipynb::Cell 52 FAILED [ 79%] =================================== FAILURES =================================== ______ TestNotebooks/MiscTests/MuMoTtest_NoiseFixedPoints.ipynb::Cell 52 _______ Notebook cell execution failed Cell 52: Timeout of 120 seconds exceeded executing...
…t ratio of the axes. This solves #409
This issue appeared recently in one of the last MuMoT releases, possibly when the plotting methods have been modified.
Currently explictly list the notebooks to be run in tox.ini. A cleaner approach would be to have - one or more directories within which all notebooks should be run -...
Encountered when using Python 3.6 or 3.7 and latest acceptable versions of dependencies: see CI runs for https://github.com/DiODeProject/MuMoT/pull/376
Bare `except:` statements will swallow up all exceptions, making debugging more difficult and possibly making certain code paths inaccessible. For example in `views.py` line 2887 can never be reached as...
It is not possible to change the axes labels through the option `ylab`. For example, try this code: ``` mumot.MuMoTmultiController([model.SSA(silent=True), model.integrate(silent=True)], shareAxes=True, choose_yrange=[0,1], ylab="This is the y label" ) ```...
At present tracebacks are suppressed via the logic in __init__.py. This is annoying when pytest fails. A possible solution: if there is an active IPython session then only suppress tracebacks...