Skip to content

Commit ca8a169

Browse files
henryiiimayeut
andauthored
Apply suggestions from code review
Co-authored-by: Matthieu Darbois <[email protected]>
1 parent 7ca68c9 commit ca8a169

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def build(session: nox.Session) -> str:
3838
sdist_path.rename(f"dist/{sdist_path.name}")
3939

4040
global wheel
41-
wheel = f"dist/{sdist_path.name}"
41+
wheel = f"dist/{wheel_path.name}"
4242

4343

4444
@nox.session

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ctest = "cmake:ctest"
4848
[dependency-groups]
4949
test = [
5050
"coverage>=4.2",
51-
"pytest>=3.0.3",
51+
"pytest>=6",
5252
"pytest-cov>=2.4.0",
5353
]
5454
docs = [
@@ -88,6 +88,11 @@ wheel.cmake = false
8888
wheel.platlib = true
8989

9090

91+
[tool.pytest.ini_options]
92+
minversion = "6.0"
93+
testpaths = ["tests"]
94+
95+
9196
[tool.cibuildwheel]
9297
build = "cp39-*"
9398
test-groups = ["test"]

0 commit comments

Comments
 (0)