There are many ways you can help the project:
If you’re interested in taking one of these on, let me know and I will provide more details and assist you in the process.
Lark comes with an extensive set of tests. Many of the tests will run several times, once for each parser configuration.
To run the tests, just go to the lark project root, and run the command:
python -m tests
or
pypy -m tests
For a list of supported interpreters, you can consult the tox.ini
file.
You can also run a single unittest using its class and method name, for example:
## test_package test_class_name.test_function_name
python -m tests TestLalrStandard.test_lexer_error_recovering
To run all Unit Tests with tox,
install tox and Python 2.7 up to the latest python interpreter supported (consult the file tox.ini).
Then,
run the command tox
on the root of this project (where the main setup.py file is on).
And, for example,
if you would like to only run the Unit Tests for Python version 2.7,
you can run the command tox -e py27
You can also run the tests using pytest:
pytest tests
Another way to run the tests is using setup.py:
python setup.py test