These instructions are for developers working on the olps
package.
- Clone the repository.
- Create and activate a virtual environment in the project root named
env
. See the official Python tutorial for more information in setting up virtual environments. - Install all required packages by using
pip install -r requirements.txt
. - Begin development.
To run tests: python -m pytest
To write tests:
- Create a new file in
tests/
and follow standard Pytest conventions to write tests.