-
-
Notifications
You must be signed in to change notification settings - Fork 75
5. Development
Pawel Lampe edited this page Mar 2, 2022
·
3 revisions
Everyone is free to fix bugs or introduce new features. For that, however, please refer to existing issue or create one before starting implementation.
To run tests you need tox, a tool to automate testing in Python.
Install it with:
pip3 install tox
To invoke entire test suite, in the godot-gdscript-toolkit
project directory, run:
tox
You can run only selected test cases this way:
tox -e py3 -- -k lint
For manual testing, consider installing package in editable mode:
pip3 install -e .