@@ -43,25 +43,15 @@ content-type = "text/markdown"
43
43
44
44
[tool .pytest .ini_options ]
45
45
# agressive parallel options
46
- addopts = " -ra --dist worksteal -nauto" # Defaults to parallel tests, comment out if you want serial.
46
+ addopts = " -ra -n2" # Defaults to 2 parallel tests, comment out if you want serial.
47
+ # addopts = "-ra --dist worksteal -nauto" # Defaults to parallel tests, comment out if you want serial.
47
48
# addopts = "-ra -v --dist worksteal -nauto" # parallel run with verbose output.
48
- # addopts="-ra --dist worksteal -nauto --run-slow-skip" # run skip tests and skip subset tests
49
- # addopts="-ra --dist worksteal -nauto -m 'not slow'" # on run fast tests
50
49
# addopts = "-ra --dist worksteal -nauto -q" # supress output during testing
51
50
52
51
# Regular parallel options
53
52
# addopts = "-ra -nauto" # Defaults to parallel tests, comment out if you want serial.
54
- # addopts="-ra -nauto --run-slow-skip" # run skip tests and skip subset tests
55
- # addopts="-ra -nauto -m 'not slow'" # on run fast tests
56
53
# addopts = "-ra -nauto -q" # supress output during testing
57
54
58
-
59
- # markers = [
60
- # "slow: marks tests as slow (deselect with '-m \"not slow\"')",
61
- # "subset: marks tests as beings a subset of a slow_skip test that is created for fast parallel executaion, skipped if running slow_skip.",
62
- # "slow_skip: marks tests as slow_skip, which are also marked with skip\n(select with 'pytest --run-skipped', which will skip subtest.)",
63
- # ]
64
-
65
55
minversion = " 6.0"
66
56
testpaths = [" tests" ]
67
57
# Customizing test discovery patterns
0 commit comments