Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 441 Bytes

README.md

File metadata and controls

18 lines (9 loc) · 441 Bytes

Running on a virtual environment is recommended.

Install pip requirments:

`pip install -r requirements.txt`

Start the Hugo development server. Runs on localhost:1313/docs/ by default:

`hugo server`

Run the test environment from the root directory. Python 3 is required.

`python -m pytest`

To use multiple cores when running tests, add -n (2 is enough for current tests):

`python -m pytest -n <Additional Cores>`