-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.77 KB
/
pyproject.toml
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
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = [
"setuptools>=42",
"wheel",
"pybind11>=2.6.0",
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = [
"fb_regular: marks regular tests for FeatureBased functions",
"fb_opt: marks optimizer tests for FeatureBased functions",
"clustered_mode: marks tests which are supported only by functions that can work in clustered mode",
"sc_regular: marks regular tests for SetCover functions",
"sc_opt: marks optimizer tests for SetCover functions",
"psc_regular: marks regular tests for ProbabilisticSetCover functions",
"psc_opt: marks optimizer tests for ProbabilisticSetCover functions",
"opt_regular: marks regular optimizer tests for functions listed in optimizerTests list",
"regular: marks regular tests for functions listed in allKernelFunctions list",
"mi_regular: marks regular tests for functions listed in allKernelMIFunctions list",
"mi_opt_regular: marks regular optimizer tests for functions listed in optimizerMITests list",
"psc_mi_regular: for regular tests of PSC MI and CG functions",
"psc_mi_opt: for optimizer tests of PSC MI and CG functions",
"sc_mi_opt: for optimizer tests of SC MI and CG functions",
"sc_mi_regular: for regular tests of SC MI and CG functions",
"cmi_regular: for regular tests for CMI functions",
"cmi_opt_regular: for optimizer tests for CMI functions",
"sc_cmi_regular: for regular tests of SC CMI",
"sc_cmi_opt: for optimizer tests of SC CMI",
"psc_cmi_regular: for regular tests of PSC CMI",
"psc_cmi_opt: for optimizer tests of PSC CMI",
"cpp_kernel_cpp: for testing cpp kernel created in cpp",
"pybind_test: for testing different pybind alternatives",
"single: mark any specific tests using this marker"
]