Running tests ============= All python packages mentioned in this tutorial should already be installed in your environment if you followed the guide at ":ref:`installation`". To execute tests, pytest must be installed. All tests should be automatically found by recursively scanning directories. To run all tests run this from root pydistsim directory:: pytest To run selected test module:: pytest pydistsim/tests/test_algorithm.py or selected test case:: pytest pydistsim/tests/test_algorithm.py::TestAlgorithmsSetter Tests coverage -------------- For tests coverage, ``pytest-cov`` and ``coverage`` are needed. By default, coverage is collected in all test runs. To get coverage report, run:: coverage report --show-missing Make report in console or html:: coverage report -m coverage html For integration with `coveralls `_ we use the `Universal Coverage Reporter `_. This is configured in file ``.travis.yml``. To change the described ``pytest`` behavior, see section ``[tool.pytest.ini_options]`` at ``pyproject.toml``. Testing memory usage -------------------- For this task, we use the `memray `_ tool. You may need to install it, since it's not covered in the guide at ":ref:`installation`". To test memory usage, run:: memray run SCRIPT_NAME To use check memory usage of pytest tests, run:: memray run --output memray_output.bin -m pytest To generate a flamegraph report, run:: memray flamegraph memray_output.bin --temporal --force --output memray_flamegraph.html For other types of reports, see `memray documentation `_.