Daniel Kotik
Daniel Kotik
See my https://github.com/atomec-project/atoMEC/pull/93#discussion_r734332659.
Currently, this seems not be supported by `bump2version`.
See #12 for the first part.
At 24365873928008a12c8b263938232c25aa693c8f we have now (same parameters as in https://github.com/DanielKotik/Optical-beams-MEEP/issues/3#issue-569511371): Pure Python implementation: ``` In [1]: import optbeam Please consider compiling `optbeam.py` via Cython: `$ cythonize -3 -i optbeam.py` In...
A solution might be 1. add ` 'sphinx.ext.imgconverter'` to `conf.py` 2. in `/docs` run `make latex` 3. `cd ./_build/latex` 4. `latexmk -pdf -halt-on-error` It probably becomes necessary to adjust `.gitignore`...
It seems that `pytest-split` would be perfect as it promises to balance the duration of the individual tests in the groups.
I've created a `.test_durations` file: ```json { "test/hyperopt_test.py::TestHyperparameterOptimization::test_acsd": 0.260742404000041, "test/hyperopt_test.py::TestHyperparameterOptimization::test_different_ho_methods": 28.16175093299998, "test/hyperopt_test.py::TestHyperparameterOptimization::test_distributed_hyperopt": 9.784985746000018, "test/hyperopt_test.py::TestHyperparameterOptimization::test_hyperopt": 30.80906783499998, "test/inference_test.py::TestInference::test_inference_lazy_loading": 0.09695035800001506, "test/inference_test.py::TestInference::test_inference_ram": 0.12282330799996544, "test/inference_test.py::TestInference::test_predictions": 0.00039540200003784776, "test/inference_test.py::TestInference::test_unit_conversion": 0.013795581000067614, "test/installation_test.py::TestInstallation::test_data_repo": 0.0009633050000275034, "test/installation_test.py::TestInstallation::test_installation": 0.0020740109999906053, "test/integration_test.py::TestMALAIntegration::test_analytical_integration": 0.0034034189999374576, "test/integration_test.py::TestMALAIntegration::test_pwevaldos_vs_ppdos":...
We need to find a meachanism on how and when to update the `.test_duration` file. The following issues might be worth examining - jerry-git/pytest-split#20 - jerry-git/pytest-split#11
I came up with a solution on how to update the `.test_duration` file. Here is a test run (just to show off :smile:):  I'll provide a PR once PR...