-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpytest.ini
More file actions
23 lines (23 loc) · 1.31 KB
/
pytest.ini
File metadata and controls
23 lines (23 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[pytest]
markers =
gpu: Test requires a compute-capable GPU (select with '-m "gpu"')
tensorflow: Test requires TensorFlow installed (select with '-m "tensorflow"')
mkl: Test requires Intel MKL (select with '-m "mkl"')
papi: Test requires PAPI counters to work (select with '-m "papi"')
mlir: Test requires pyMLIR, MLIR tools and LLVM compiler to work (select with '-m "mlir"')
sve: Test requires SVE-capable ARM processor (select with '-m "sve"')
lapack: Test for the LAPACK library that requires OpenBLAS (select with '-m "lapack"')
mpi: Test requires MPI. (select with '-m mpi')
scalapack: Test requires ScaLAPACK (Intel MKL and OpenMPI). (select with '-m scalapack')
datainstrument: Test uses data instrumentation (select with '-m datainstrument')
hptt: Test requires the HPTT library (select with '-m "hptt')
long: Test runs for a long time and is skipped in CI (select with '-m "long"')
torch: Test for the PyTorch/ONNX frontend (select with '-m "torch"')
autodiff: Test for automatic differentiation (select with '-m "autodiff"')
onnx: Test for the ONNX frontend (select with '-m "onnx"')
sequential: Test must be run sequentially (select with '-m "sequential"')
python_files =
test_*.py
*_test.py
*_cudatest.py
addopts = --ignore=dace/external --color=yes