Skip to content

Commit

Permalink
revert changes to pytest.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Nov 28, 2024
1 parent cf378e9 commit 08b09c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ test-common-wheels = { cmd = "pytest --numprocesses=auto tests/wheel_tests/", de
"build-release",
] }
test-common-wheels-ci = { cmd = "pytest --numprocesses=auto --verbose tests/wheel_tests/" }
test-integration-ci = "pytest --verbose tests/integration_python"
test-integration-fast = { cmd = "pytest -m 'not slow' --pixi-build=debug --numprocesses=auto tests/integration_python", depends-on = [
test-integration-ci = "pytest --durations=10 --verbose --timeout=300 tests/integration_python"
test-integration-fast = { cmd = "pytest -m 'not slow' --pixi-build=debug --numprocesses=auto --durations=10 --timeout=300 tests/integration_python", depends-on = [
"build-debug",
] }
test-integration-slow = { cmd = "pytest --numprocesses=auto tests/integration_python", depends-on = [
test-integration-slow = { cmd = "pytest --numprocesses=auto --durations=10 --timeout=300 tests/integration_python", depends-on = [
"build-release",
] }
# pass the file to run as an argument to the task
Expand Down
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[pytest]
addopts = --basetemp=pytest-temp --timeout=300 --durations=10
addopts = --basetemp=pytest-temp
tmp_path_retention_policy = failed
testpaths = tests
markers =
Expand Down

0 comments on commit 08b09c0

Please sign in to comment.