Merge pull request #7036 from pytest-dev/revert-7030-increase-test_timeout-timeout

Revert "Increase test_faulthandler.py::test_timeout sleep duration on CI"
This commit is contained in:
Ran Benita 2020-04-07 13:42:51 +03:00 committed by GitHub
commit 6356583eab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ def test_timeout(testdir, enabled):
"""
import os, time
def test_timeout():
time.sleep(10 if "CI" in os.environ else 0.1)
time.sleep(1 if "CI" in os.environ else 0.1)
"""
)
testdir.makeini(