-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
24 lines (24 loc) · 962 Bytes
/
pytest.ini
File metadata and controls
24 lines (24 loc) · 962 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
[pytest]
testpaths = tests
pythonpath = src .
python_files = test_*.py
python_functions = test_*
addopts = -v
filterwarnings = ignore::pytest.PytestUnknownMarkWarning
markers =
gather: gather op accuracy (tests/pytest)
scatter: scatter op accuracy (tests/pytest)
spmv_csr: CSR SpMV accuracy (tests/pytest)
spmv_coo: COO SpMV accuracy (tests/pytest)
spmv_coo_tocsr: COO-to-CSR SpMV accuracy (tests/pytest)
spmm_csr: CSR SpMM accuracy (tests/pytest)
spmm_csr_opt: optimized CSR SpMM accuracy (tests/pytest)
spmm_coo: COO SpMM accuracy (tests/pytest)
spsv: CSR/COO SpSV accuracy (tests/pytest)
spsv_csr: CSR SpSV accuracy (tests/pytest)
spsv_coo: COO SpSV accuracy (tests/pytest)
spsm: CSR/COO SpSM accuracy (tests/pytest)
spsm_csr: CSR SpSM accuracy (tests/pytest)
spsm_coo: COO SpSM accuracy (tests/pytest)
spgemm_csr: CSR SpGEMM accuracy (tests/pytest)
sddmm_csr: CSR SDDMM accuracy (tests/pytest)