dpaste/docs/testing.rst
Martin Mahner 4924c88107 Use Pipenv
2018-01-07 17:20:50 +01:00

20 lines
606 B
ReStructuredText

=============================
Testing and local development
=============================
dpaste is continuously tested on Travis_. You can also run the test
suite locally with tox_::
$ cd dpaste/
$ pip install tox
$ tox --skip-missing-interpreters
A more manual approach is installing it all by hand in a virtual environment.
This is also the preferred way to setup an environment for local development::
$ cd dpaste/
$ pipenv install --three --dev
$ pipenv run python runtests.py
.. _Travis: https://travis-ci.org/bartTC/dpaste
.. _tox: http://tox.readthedocs.org/en/latest/