From 5a17e797c7cd084e5b65cc03e834f37b9db5a3a5 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 23 Jul 2015 21:15:45 -0300 Subject: [PATCH] Fix basepython for tox envs "doctesting" and "coveralls" Because we are currently using "nighly" python for travis, which uses python 3.6 as the default interpreter. This breaks the environments listed above because "inspect.getargspec" has been removed in py36. --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 0b262e562..be2d9baa0 100644 --- a/tox.ini +++ b/tox.ini @@ -89,6 +89,7 @@ commands= make html [testenv:doctesting] +basepython = python3.4 changedir=doc/en deps=PyYAML commands= py.test -rfsxX {posargs} @@ -117,6 +118,7 @@ commands= [testenv:coveralls] +basepython = python3.4 changedir=testing deps = {[testenv]deps}