From ba6fb2135cf0b4c30853b961fa4964627fa688ae Mon Sep 17 00:00:00 2001 From: Branko Majic Date: Wed, 14 Feb 2018 16:36:15 +0100 Subject: [PATCH] Set usedevelop to false in tox configuration file (issue #644): - Set the usedevelop value to false, since it is considered dangerous to assume that the development environment is the same as the distributed one (same set of files etc may not be present). --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 3d259f05..4afa9560 100644 --- a/tox.ini +++ b/tox.ini @@ -30,7 +30,7 @@ commands = sh -c '! testproject/manage.py makemigrations --dry-run --exit --noinput' pytest --basetemp={envtmpdir} --ds=tests.settings --cov=src/wiki --cov-config .coveragerc {posargs} -usedevelop = true +usedevelop = false deps = .[test] -- 2.45.2