mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
2a0449ab3a
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
21 lines
425 B
ReStructuredText
21 lines
425 B
ReStructuredText
Contributing to pipenv
|
|
======================
|
|
|
|
To work on pipenv itself, fork the repository and clone your fork to your local
|
|
system.
|
|
|
|
Now, install the development requirements::
|
|
|
|
cd pipenv
|
|
virtualenv ~/pipenv-venv # You can use a different path if you like.
|
|
source ~/pipenv-venv/bin/activate
|
|
python setup.py develop
|
|
pipenv install --dev
|
|
|
|
|
|
To run the test suite locally::
|
|
|
|
pipenv run pytest tests
|
|
|
|
|