From 8d64be15206068f69daa9e0963ea96e517f6b5bd Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Mon, 12 Nov 2018 18:15:04 -0300 Subject: [PATCH] README: change tox from pipenv to global env pipenv knows when its inside a virtual environment itself so we can pull that trick off. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3cbd787..2b137d7 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,9 @@ Because of that, **never setup a testing environment in production.** # setup the testing users $ pipenv run ./manage.py setup_tests -# run tests -$ pipenv run tox +# make sure you have tox installed +$ pip install tox + +# run basic linter and tests +$ tox ```