Merge pull request #6499 from blueyed/fix-ci

tests: fix test_crash_on_closing_tmpfile_py27
This commit is contained in:
Daniel Hahler 2020-01-18 13:35:11 +01:00 committed by GitHub
commit 1971033051
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1367,6 +1367,8 @@ def test_crash_on_closing_tmpfile_py27(testdir):
printing.wait() printing.wait()
""" """
) )
# Do not consider plugins like hypothesis, which might output to stderr.
testdir.monkeypatch.setenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", "1")
result = testdir.runpytest_subprocess(str(p)) result = testdir.runpytest_subprocess(str(p))
assert result.ret == 0 assert result.ret == 0
assert result.stderr.str() == "" assert result.stderr.str() == ""