Skip to content

Commit 16a01e1

Browse files
committed
Review
1 parent e57afc7 commit 16a01e1

File tree

3 files changed

+4
-14
lines changed

3 files changed

+4
-14
lines changed

dataframely/_deprecation.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ def skip_if(env: str) -> Callable:
1919
def decorator(fun: Callable) -> Callable:
2020
@wraps(fun)
2121
def wrapper() -> None:
22-
should_skip = os.getenv(env, "").lower() in TRUTHY_VALUES
23-
if should_skip:
22+
if os.getenv(env, "").lower() in TRUTHY_VALUES:
2423
return
2524
fun()
2625

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ requires-python = ">=3.11"
2222
version = "0.0.0"
2323

2424
[project.urls]
25-
Repository = "https://github.com/quantco/dataframely"
2625
Documentation = "https://dataframely.readthedocs.io/"
26+
Repository = "https://github.com/quantco/dataframely"
2727

2828
[tool.maturin]
2929
module-name = "dataframely._extre"
@@ -82,7 +82,8 @@ module = ["pyarrow.*"]
8282
[tool.pytest.ini_options]
8383
addopts = "--import-mode=importlib"
8484
filterwarnings = [
85-
"ignore:datetime.datetime.utcfromtimestamp\\(\\) is deprecated.*:DeprecationWarning",
85+
# Almost all tests are oblivious to the value of `nullable`. Let's ignore the warning as long as it exists.
86+
"ignore:The 'nullable' argument was not explicitly set:FutureWarning",
8687
]
8788
testpaths = ["tests"]
8889

tests/conftest.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)