summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorLucas Alvares Gomes <lucasagomes@gmail.com>2017-01-18 21:48:11 +0000
committerMatt Clay <matt@mystile.com>2017-01-19 12:06:16 -0800
commite8a94acffa776bf4fc5468b94c85d6adcbee7ab4 (patch)
tree107821fc37eb4aecb0cb173c1fcf1006efdac686 /tox.ini
parentfbfe66967dd6a19fb5a94ae941f0505147bc48c0 (diff)
downloadansible-e8a94acffa776bf4fc5468b94c85d6adcbee7ab4.tar.gz
Pass the HOME environment variable to testenv in tox.ini
In order to avoid the "missing HOME variable" issue when running the unit tests, this patch is passing the HOME environment variable to [testenv]. Fixes #20424
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 4 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 59aa4a0cd7..baef6d1423 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,6 +16,10 @@ commands =
py27: python -m compileall -fq -x 'test/samples' lib test contrib
py3{5,6}: python -m compileall -fq -x 'test/samples|lib/ansible/modules' lib test contrib
make tests
+passenv =
+ # Pass HOME to the test environment to avoid the missing HOME env
+ # variable error. See issue: #20424
+ HOME
[flake8]