-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from ssciwr/use_dep_group_in_ci_remove_requir…
…ements_dev use dev dependency-group in CI
- Loading branch information
Showing
3 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,11 +39,11 @@ wheel.packages = ["clang_format"] | |
wheel.py-api = "py2.py3" | ||
cmake.version = ">=3.16.0" | ||
ninja.version = ">=1.10.0" | ||
cmake.verbose = true | ||
build.verbose = true | ||
logging.level = "DEBUG" | ||
|
||
[dependency-groups] | ||
dev = ["pytest"] | ||
dev = ["pytest", "pytest-git"] | ||
|
||
[tool.cibuildwheel] | ||
# Super-verbose output for debugging purpose | ||
|
@@ -52,9 +52,9 @@ build-verbosity = 3 | |
environment = "CMAKE_GENERATOR=Ninja" | ||
|
||
# Testing commands for our wheels | ||
test-groups = ["dev"] | ||
before-test = [ | ||
"git config --global user.name Name", | ||
"git config --global user.email [email protected]" | ||
] | ||
test-requires = ["pytest", "pytest-git"] | ||
test-command = "pytest {package}/test" |
This file was deleted.
Oops, something went wrong.