perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / pytest-helpers-namespace / patches / 01-pytest-disable-plugins.patch
blobadc071212ecb20c2c6a62d253028345ec3acc653
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
3 @@ -34,7 +34,7 @@
4 """
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(
12 @@ -68,7 +68,7 @@
13 """
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(
21 @@ -95,7 +95,7 @@
22 """
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(
30 @@ -197,7 +197,7 @@
31 """
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"])
39 @@ -222,7 +222,7 @@
40 """
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(
48 @@ -257,7 +257,7 @@
49 """
52 - result = pytester.runpytest("-vv")
53 + result = pytester.runpytest("-vv", "-p", "no:black", "-p", "no:mypy")
54 result.assert_outcomes(passed=1)