forked from narwhals-dev/narwhals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
77 lines (61 loc) · 2.09 KB
/
noxfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import nox
from nox.sessions import Session
nox.options.default_venv_backend = "uv"
nox.options.reuse_venv = True
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
def run_common(session: Session, coverage_threshold: float) -> None:
session.install("-e.", "-r", "requirements-dev.txt")
session.run(
"pytest",
"tests",
"--cov=narwhals",
"--cov=tests",
f"--cov-fail-under={coverage_threshold}",
"--runslow",
)
session.run("pytest", "narwhals", "--doctest-modules")
@nox.session(python=PYTHON_VERSIONS) # type: ignore[misc]
def pytest_coverage(session: Session) -> None:
if session.python == "3.8":
coverage_threshold = 85
else:
coverage_threshold = 100
session.install("modin[dask]")
run_common(session, coverage_threshold)
@nox.session(python=PYTHON_VERSIONS[0]) # type: ignore[misc]
@nox.parametrize("pandas_version", ["0.25.3", "1.1.5"]) # type: ignore[misc]
def min_and_old_versions(session: Session, pandas_version: str) -> None:
session.install(
f"pandas=={pandas_version}",
"polars==0.20.3",
"numpy==1.17.5",
"pyarrow==11.0.0",
"scipy==1.5.0",
"scikit-learn==1.1.0",
"tzdata",
)
run_common(session, coverage_threshold=50)
@nox.session(python=PYTHON_VERSIONS[-1]) # type: ignore[misc]
def nightly_versions(session: Session) -> None:
session.install("polars")
session.install( # pandas nightly
"--pre",
"--extra-index-url",
"https://pypi.anaconda.org/scientific-python-nightly-wheels/simple",
"pandas",
)
session.install( # numpy nightly
"--pre",
"--extra-index-url",
"https://pypi.anaconda.org/scientific-python-nightly-wheels/simple",
"numpy",
)
session.run("uv", "pip", "install", "pip")
session.run( # dask nightly
"pip",
"install",
"git+https://github.com/dask/distributed",
"git+https://github.com/dask/dask",
"git+https://github.com/dask/dask-expr",
)
run_common(session, coverage_threshold=50)