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.
1 parent 7ca68c9 commit ca8a169Copy full SHA for ca8a169
noxfile.py
@@ -38,7 +38,7 @@ def build(session: nox.Session) -> str:
38
sdist_path.rename(f"dist/{sdist_path.name}")
39
40
global wheel
41
- wheel = f"dist/{sdist_path.name}"
+ wheel = f"dist/{wheel_path.name}"
42
43
44
@nox.session
pyproject.toml
@@ -48,7 +48,7 @@ ctest = "cmake:ctest"
48
[dependency-groups]
49
test = [
50
"coverage>=4.2",
51
- "pytest>=3.0.3",
+ "pytest>=6",
52
"pytest-cov>=2.4.0",
53
]
54
docs = [
@@ -88,6 +88,11 @@ wheel.cmake = false
88
wheel.platlib = true
89
90
91
+[tool.pytest.ini_options]
92
+minversion = "6.0"
93
+testpaths = ["tests"]
94
+
95
96
[tool.cibuildwheel]
97
build = "cp39-*"
98
test-groups = ["test"]
0 commit comments