We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The {envsitepackagesdir} is not expanded correctly. For the following tox.ini
{envsitepackagesdir}
#!configfile [testenv] deps = pytest commands = py.test --junitxml=junit-{envname}.xml {envsitepackagesdir}/foo
I get this output from jenkins:
#!bash ============================= test session starts ============================== platform linux2 -- Python 2.7.3 -- pytest-2.3.4 ERROR: file not found: <bound method VenvConfig.envsitepackagesdir of <tox._config.VenvConfig instance at 0x7fc69c8887a0>>/foo =============================== in 0.00 seconds =============================== ERROR: InvocationError: '/var/lib/jenkins/jobs/foo/workspace/TOXENV/py27/src/foo/.tox/py27/bin/py.test --junitxml=junit-py27.xml <bound method VenvConfig.envsitepackagesdir of <tox._config.VenvConfig instance at 0x7fc69c8887a0>>/foo' ___________________________________ summary ____________________________________ ERROR: py27: commands failed
Maybe a missing @property ?
@property
The text was updated successfully, but these errors were encountered:
Original comment by @hpk42
fix issue92 envsitepackagesdir to work correctly. Also fix the test.
→ <<cset 2bedb02425da>>
Sorry, something went wrong.
yes, not only that. the test is broken as well it seems. Didn't pay enough attention when merging this change :/
No branches or pull requests
The
{envsitepackagesdir}
is not expanded correctly.For the following tox.ini
I get this output from jenkins:
Maybe a missing
@property
?The text was updated successfully, but these errors were encountered: