Skip to content

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.

Running tests

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 .
Clone this wiki locally