README: change tox from pipenv to global env

pipenv knows when its inside a virtual environment itself so we can pull
that trick off.
This commit is contained in:
Luna Mendes 2018-11-12 18:15:04 -03:00
parent 29b5f4cfb6
commit 8d64be1520
1 changed files with 5 additions and 2 deletions

View File

@ -71,6 +71,9 @@ Because of that, **never setup a testing environment in production.**
# setup the testing users # setup the testing users
$ pipenv run ./manage.py setup_tests $ pipenv run ./manage.py setup_tests
# run tests # make sure you have tox installed
$ pipenv run tox $ pip install tox
# run basic linter and tests
$ tox
``` ```