From c4899a0ce4782d74f521865cf8f8bbdc9e42d037 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 18 Jun 2018 19:43:50 +0100 Subject: [PATCH] Fix invocation of test runner by tox I think tox calls it in a way that #! is ignored --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 70de05df..ae761121 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,9 @@ deps = -r{toxinidir}/dev_requirements.txt commands = - {posargs:./test} + {posargs:bash run_tests} +whitelist_externals = + bash [testenv:docs] basepython = python