1 --- pytest-helpers-namespace-2021.12.29/tests/test_helpers_namespace.py.orig
2 +++ pytest-helpers-namespace-2021.12.29/tests/test_helpers_namespace.py
7 - result = pytester.runpytest("-s")
8 + result = pytester.runpytest("-s", "-p", "no:black", "-p", "no:mypy")
10 # fnmatch_lines does an assertion internally
11 result.stdout.fnmatch_lines(
16 - result = pytester.runpytest("-s")
17 + result = pytester.runpytest("-s", "-p", "no:black", "-p", "no:mypy")
19 # fnmatch_lines does an assertion internally
20 result.stdout.fnmatch_lines(
25 - result = pytester.runpytest("-s")
26 + result = pytester.runpytest("-s", "-p", "no:black", "-p", "no:cov", "-p", "no:mypy")
28 # fnmatch_lines does an assertion internally
29 result.stdout.fnmatch_lines(
34 - result = pytester.runpytest("-svv", "--log-cli-level=debug")
35 + result = pytester.runpytest("-svv", "--log-cli-level=debug", "-p", "no:black", "-p", "no:mypy", "-p", "no:relaxed")
37 # fnmatch_lines does an assertion internally
38 result.stdout.fnmatch_lines(["test_helper_as_regular_function.py::test_helpers PASSED"])
43 - result = pytester.runpytest("-s")
44 + result = pytester.runpytest("-s", "-p", "no:black", "-p", "no:mypy")
46 # fnmatch_lines does an assertion internally
47 result.stdout.fnmatch_lines(
52 - result = pytester.runpytest("-vv")
53 + result = pytester.runpytest("-vv", "-p", "no:black", "-p", "no:mypy")
54 result.assert_outcomes(passed=1)