1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
import pytest
from tests.common.utils import skipif_threading
pytest_plugins = "pytester"
INI = """
[pytest]
norecursedirs = .svn tmp whatever*
"""
TEST_SCRIPT = """
def test_noop():
pass
"""
@pytest.mark.skipif(int(pytest.__version__.split(".")[0]) < 7, reason="hook is new")
@skipif_threading # colliding test_bad.py file
def test_collection_warning(pytester):
pytester.mkdir(".hypothesis")
pytester.path.joinpath("pytest.ini").write_text(INI, encoding="utf-8")
pytester.path.joinpath("test_ok.py").write_text(TEST_SCRIPT, encoding="utf-8")
pytester.path.joinpath(".hypothesis/test_bad.py").write_text(
TEST_SCRIPT.replace("pass", "raise Exception"), encoding="utf-8"
)
result = pytester.runpytest_subprocess()
result.assert_outcomes(passed=1, warnings=1)
assert "Skipping collection of '.hypothesis'" in "\n".join(result.outlines)
|