From 331d4af160749785b578359ef29e3cec922aa35d Mon Sep 17 00:00:00 2001 From: Oliver Bestwalter Date: Sun, 3 Jun 2018 00:20:14 +0200 Subject: [PATCH] CODECOV_ env need to be in tox passenv From https://github.com/tox-dev/tox-travis/issues/106 it became clear that the lack of explicit mention in passenv is confusing to the user. They might think that `CODECOV_*` env vars are automatically passed through. As tox only passes through the absolute minimum necessary `CODECOV_*` has to be added to passenv also. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59e03699..d74ba55a 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Just please make sure to pass all the necessary environment variables through: ``` [testenv] -passenv = TOXENV CI TRAVIS TRAVIS_* +passenv = TOXENV CI TRAVIS TRAVIS_* CODECOV_* deps = codecov>=1.4.0 commands = codecov -e TOXENV ```