We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c47db7 commit a82dd2fCopy full SHA for a82dd2f
testing/test_config.py
@@ -123,12 +123,10 @@ def test_toxini_before_lower_pytestini(self, testdir):
123
assert config.getini("minversion") == "2.0"
124
125
def test_ini_parse_error(self, testdir):
126
- testdir.tmpdir.join("pytest.ini").write('addopts = -x')
+ testdir.tmpdir.join("pytest.ini").write("addopts = -x")
127
result = testdir.runpytest()
128
assert result.ret != 0
129
- result.stderr.fnmatch_lines([
130
- "ERROR: *pytest.ini:1: no section header defined"
131
- ])
+ result.stderr.fnmatch_lines(["ERROR: *pytest.ini:1: no section header defined"])
132
133
@pytest.mark.xfail(reason="probably not needed")
134
def test_confcutdir(self, testdir):
0 commit comments