File tree Expand file tree Collapse file tree 3 files changed +4
-14
lines changed
Expand file tree Collapse file tree 3 files changed +4
-14
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ requires-python = ">=3.11"
2222version = " 0.0.0"
2323
2424[project .urls ]
25- Repository = " https://github.com/quantco/dataframely"
2625Documentation = " https://dataframely.readthedocs.io/"
26+ Repository = " https://github.com/quantco/dataframely"
2727
2828[tool .maturin ]
2929module-name = " dataframely._extre"
@@ -82,7 +82,8 @@ module = ["pyarrow.*"]
8282[tool .pytest .ini_options ]
8383addopts = " --import-mode=importlib"
8484filterwarnings = [
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]
8788testpaths = [" tests" ]
8889
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments