From afca44a09ba9c6f17bc3252e1bea15a6dedc4fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Fri, 26 Oct 2018 17:06:11 +0100 Subject: [PATCH] add dev tox env (#1226) --- tox.ini | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tox.ini b/tox.ini index 40f437ff0..4782da0a9 100644 --- a/tox.ini +++ b/tox.ini @@ -113,3 +113,12 @@ exclude = virtualenv_embedded/site.py [pep8] max-line-length = 120 + +[testenv:dev] +description = generate a DEV environment +extras = testing, docs +# required to make looponfail reload on every source code change +usedevelop = True +basepython = python3.7 +commands = python -m pip list --format=columns + python -c 'import sys; print(sys.executable)'