We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a77a35e + 790dcd6 commit eb998bfCopy full SHA for eb998bf
conftest.py renamed to inequality/tests/conftest.py
@@ -7,18 +7,15 @@
7
8
def warning_depr(x):
9
return pytest.warns(
10
- FutureWarning,
11
- match=f"{x} is deprecated and will be removed on 2025-01-01."
+ FutureWarning, match=f"{x} is deprecated and will be removed on 2025-01-01."
12
)
13
14
15
def warning_invalid(x):
16
- return pytest.warns(RuntimeWarning,
17
- match=f"invalid value encountered in {x}")
+ return pytest.warns(RuntimeWarning, match=f"invalid value encountered in {x}")
18
19
20
-warning_div_zero = pytest.warns(RuntimeWarning,
21
- match="divide by zero encountered")
+warning_div_zero = pytest.warns(RuntimeWarning, match="divide by zero encountered")
22
23
24
def pytest_configure():
0 commit comments