[Pytest-commit] Issue #312: Merging / inlining test environment sections doesn't entirely interact well with conditional settings. (hpk42/tox)

Julian Berman issues-reply at bitbucket.org
Tue Feb 9 19:19:59 EST 2016


New issue 312: Merging / inlining test environment sections doesn't entirely interact well with conditional settings.
https://bitbucket.org/hpk42/tox/issues/312/merging-inlining-test-environment-sections

Julian Berman:

Reproducing tox.ini:

```
#!ini

[tox]
envlist = pypy, coverage

[testenv]
deps =
    pypy,coverage: twisted

[testenv:coverage]
deps =
    {[testenv]deps}
    coverage
```

which attempts to tell pip to install a req called ``pypy,coverage: twisted`` when the coverage test environment is run with ``tox -e coverage``.

(The ``pypy`` environment works fine).




More information about the pytest-commit mailing list