How to build, test and deploy plotpy¶
Build instructions¶
To build the wheel, you need to run the following command:
python setup.py bdist_wheel
It should generate a .whl
file in the dist directory.
Running unittests¶
To run the unittests, you need:
Python
pytest
coverage (optional)
Then run the following command:
pytest -v --unattended guidata
To run test with coverage support, use the following command:
pytest -v --cov --cov-report=html --unattended guidata
Code formatting¶
The code is formatted with black and isort.
If you are using Visual Studio Code, the formatting is done automatically when you save a file, thanks to the project settings in the .vscode directory.