-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathpytest.ini
More file actions
25 lines (25 loc) · 834 Bytes
/
pytest.ini
File metadata and controls
25 lines (25 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[pytest]
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
blackwell: marks tests that require Blackwell GPU
cuda: marks tests that require CUDA/torch GPU availability
integration: marks tests that start external servers or heavy deps
addopts = --capture=sys
timeout = 600
filterwarnings =
ignore:.*Found GPU.*which is of cuda capability.*:UserWarning
ignore:.*Please use the new API settings to control TF32.*:UserWarning
ignore:.*Minimum and Maximum cuda capability supported.*:UserWarning
ignore:`torch\.jit\.script_method` is deprecated.*:DeprecationWarning
ignore:`torch\.jit\.script` is deprecated.*:DeprecationWarning
norecursedirs =
.hypothesis
.git
build
tmp-tebuild
tmp-tebuild.*
third_party
vendor
optimization
profiling
scripts