Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swtch traceback to --native in cugraph #4663

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions benchmarks/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ testpaths =

addopts =
--benchmark-columns="min, max, mean, stddev, outliers"
--tb=native

markers =
managedmem_on: RMM managed memory enabled
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

[pytest]
addopts = --tb=native
4 changes: 4 additions & 0 deletions python/cugraph-pyg/cugraph_pyg/tests/pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

[pytest]
addopts = --tb=native
1 change: 1 addition & 0 deletions python/cugraph-pyg/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ addopts =
--benchmark-max-time=0
--benchmark-min-rounds=1
--benchmark-columns="mean, rounds"
--tb=native
## do not run slow tests/benchmarks by default
-m "not slow"

Expand Down
1 change: 1 addition & 0 deletions python/cugraph-service/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ addopts = --benchmark-warmup=off
--benchmark-max-time=0
--benchmark-min-rounds=1
--benchmark-columns="min, max, mean, rounds"
--tb=native
## for use with rapids-pytest-benchmark plugin
#--benchmark-gpu-disable
## for use with pytest-cov plugin
Expand Down
4 changes: 4 additions & 0 deletions python/cugraph-service/tests/pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

[pytest]
addopts = --tb=native
1 change: 1 addition & 0 deletions python/cugraph/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ addopts =
--benchmark-max-time=0
--benchmark-min-rounds=1
--benchmark-columns="mean, rounds"
--tb=native
## do not run the slow tests/benchmarks by default
-m "not slow"
## for use with rapids-pytest-benchmark plugin
Expand Down
4 changes: 4 additions & 0 deletions python/nx-cugraph/nx_cugraph/tests/pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

[pytest]
addopts = --tb=native
2 changes: 2 additions & 0 deletions python/pylibcugraph/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@
[pytest]
markers =
cugraph_ops: Tests requiring cugraph-ops

addopts = --tb=native
Loading