diff options
| author | holger krekel <holger@merlinux.eu> | 2015-05-12 21:42:12 +0200 |
|---|---|---|
| committer | holger krekel <holger@merlinux.eu> | 2015-05-12 21:42:12 +0200 |
| commit | 486fe99bc56acbbb8078bd5aab8bafc9b1dc09a2 (patch) | |
| tree | e2019d2efaf933f65e6f18c77ea6b775d2b25234 /tests | |
| parent | 554c6d8a464d5c5169e6e09fb1b2e864c09c74b7 (diff) | |
| download | tox-486fe99bc56acbbb8078bd5aab8bafc9b1dc09a2.tar.gz | |
show all registered per-testenv ini values
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 97a3cf9..a3824a6 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1566,14 +1566,14 @@ class TestCmdInvocation: result = cmd.run("tox", "--showconfig") assert result.ret == 0 result.stdout.fnmatch_lines([ - r'*deps=*dep1==2.3, dep2*', + r'*deps*dep1==2.3, dep2*', ]) # override dep1 specific version, and force version for dep2 result = cmd.run("tox", "--showconfig", "--force-dep=dep1", "--force-dep=dep2==5.0") assert result.ret == 0 result.stdout.fnmatch_lines([ - r'*deps=*dep1, dep2==5.0*', + r'*deps*dep1, dep2==5.0*', ]) |
