Skip to content

Maintenance Manual

Akos Kungl edited this page Feb 3, 2021 · 1 revision

Notes on how to build and contribute to the code

Workflow and contribution instructions

Testing

We use nosetest for testing. To run all the tests type in the root of the project directory:

nosetests

Or to run a single test write for example

nosetest tests/import_test.py

Codestyle and code-hygiene

To ensure style and quality run pycodestyle and pylint on the source code. For pycodestyle run for example:

pycodestyle tests/import_test.py

and for pylint:

pylint tests/import_test.py
Clone this wiki locally