From 8f2cded7ffd3ef68f3f96d8432757b60c62b1607 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 13 Dec 2017 11:53:52 +0100 Subject: [PATCH] Run clean --all in all tox targets (#121) The second full tox run fails because 'py27' target is picking up C object files from 'py2-nosasltls'. Each target needs to clean up and start from scratch. https://github.com/python-ldap/python-ldap/pull/121 Signed-off-by: Christian Heimes --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 95fee06..fcfc628 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,9 @@ passenv = WITH_GCOV commands = {envpython} -bb -Werror \ "-Wignore:the imp module is deprecated:DeprecationWarning" \ "-Wignore:the imp module is deprecated:PendingDeprecationWarning" \ - -m coverage run --parallel setup.py test + -m coverage run --parallel setup.py \ + clean --all \ + test [testenv:py27] # No warnings with Python 2.7