This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
carboncopy/script/bootstrap
Marc Cataford c647f9dbd9
Test coverage pt.1 (#4)
* test: config fetch coverage

* ci: add test runner

* test: add test stubs

* chore: move twine and wheel to bootstrap

* infra: add test inv

* refactor: review for testability

* test: use case testing
2020-01-06 23:00:22 -05:00

10 lines
210 B
Text

VENV_NAME="carboncopy.venv"
REQ_FILE="./requirements.txt"
pyenv uninstall -f $VENV_NAME
pyenv install -s
pyenv virtualenv $VENV_NAME
pyenv activate $VENV_NAME
pip install wheel twine
pip install -r $REQ_FILE