-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4212 from Zac-HD/warn-collect-hiddendir
warn on suspicious pytest-collection of `.hypothesis` directory
- Loading branch information
Showing
9 changed files
with
85 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
RELEASE_TYPE: patch | ||
|
||
Our pytest plugin now emits a warning if you set Pytest's ``norecursedirs`` | ||
config option in such a way that the ``.hypothesis`` directory would be | ||
searched for tests. This reliably indicates that you've made a mistake | ||
which slows down test collection, usually assuming that your configuration | ||
extends the set of ignored patterns when it actually replaces them. | ||
(:issue:`4200`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 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 | ||
|
||
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") | ||
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) |