Spaces:
Sleeping
Sleeping
File size: 331 Bytes
6fc683c |
1 2 3 4 5 6 7 8 9 10 |
install: ## [Local development] Upgrade pip, install requirements, install package.
python -m pip install -U pip
python -m pip install -e .
install-dev: ## [Local development] Install test requirements
python -m pip install -r requirements-test.txt
test: ## [Local development] Run unit tests
python -m pytest -x -s -v tests
|