Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 437 Bytes

File metadata and controls

24 lines (18 loc) · 437 Bytes

Running the Test Suite with Basilisp

Pre-requisites

  • Python 3 / pip

You can install Python and pip using a tool such as pyenv. With pip installed, you can install Basilisp:

pip install -U pip
python -m venv .venv
source .venv/bin/activate
pip install .

Running Tests

Tests can be run using the Babashka task:

source .venv/bin/activate
bb test-lpy
deactivate