Python port of RiTa (in-progress)
Clone the repo and set up a virtual environment:
git clone https://github.com/dhowe/rita-py.git
cd rita-py
python3 -m venv .venv
source .venv/bin/activate
pip install pytestActivate your virtual environment (source .venv/bin/activate), then:
Run tests:
pytestRun one test file:
pytest test_riscript.py
pytest test_grammar.pyRun a specific test class or method:
pytest test_riscript.py::TestGates
pytest test_riscript.py::TestGates::test_else_gates