-
Notifications
You must be signed in to change notification settings - Fork 70
5. Development
Pawel Lampe edited this page Sep 1, 2024
·
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
# or
pipx install tox
# or from the package manager
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 .
# or
pipx install -e .