summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2015-05-12 21:42:12 +0200
committerholger krekel <holger@merlinux.eu>2015-05-12 21:42:12 +0200
commit486fe99bc56acbbb8078bd5aab8bafc9b1dc09a2 (patch)
treee2019d2efaf933f65e6f18c77ea6b775d2b25234 /tests
parent554c6d8a464d5c5169e6e09fb1b2e864c09c74b7 (diff)
downloadtox-486fe99bc56acbbb8078bd5aab8bafc9b1dc09a2.tar.gz
show all registered per-testenv ini values
Diffstat (limited to 'tests')
-rw-r--r--tests/test_config.py4
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*',
])