dpaste/docs/testing.rst

21 lines
606 B
ReStructuredText
Raw Normal View History

2013-12-18 21:28:45 +11:00
=============================
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
2013-12-18 21:28:45 +11:00
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/
2018-01-08 03:20:50 +11:00
$ pipenv install --three --dev
$ pipenv run python runtests.py
2013-12-18 21:28:45 +11:00
.. _Travis: https://travis-ci.org/bartTC/dpaste
.. _tox: http://tox.readthedocs.org/en/latest/