.. _FAQ: FAQ - Frequency Asked Questions =============================== The following Frequency Answer Questions are general and not operating system specific. #. How do I run ``pytest`` to ensure all unit and integrated tests still pass The following response assumes you have the Basilisk soure code. You need to install the python utility ``pytest`` if this is not available on your system. Instructions are found at :ref:`installOptionalPackages`. Next, navigate to the folder ``Basilisk\src`` and run ``pytest`` from there. #. How can I run ``pytest`` faster? Glad you asked. While Basilisk is a single threaded simulation, it is possible to run ``pytest`` in a multi-threaded manner:: pip install --user pytest-xdist After installing this utility you now run the multi-threaded version of ``pytest`` for 8 threads using:: python3 -m pytest -n 8 #. How can I used ``pytest`` to generate a Basilisk validation HTML report? You will need to install ``pytest-html`` package, see :ref:`installOptionalPackages`. Then you can do this with:: python3 -m pytest --report This generates an HTML report in a local ``tests/report`` folder. #. How do I perform a clean build of Basilisk? IDE’s like X-Code provide a “clean” function. This will remove some compiled code, but in Basilisk it does not get rid of all the SWIG’d code, and there can be compiler warnings related to the last CMAKE settings used. To really have a clean clean build, you can - delete the folder of ``dist3`` or ``dist`` and create a new folder with that name - delete any CMake cache - delete the ``.conan`` directory in your home folder. Now when you run CMAke it will pull a fresh copy of any required libraries and proceed to build freshly minted version of Basilisk.