summaryrefslogtreecommitdiff
path: root/pytest.ini
blob: 730658a77844c7f08318cdcf03efe36850f02caa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# content of pytest.ini
[pytest]
addopts = --durations=30 -ra
testpaths = lib/spack/spack/test
python_files = *.py
filterwarnings =
  ignore::UserWarning
markers =
  db: tests that require creating a DB
  maybeslow: tests that may be slow (e.g. access a lot the filesystem, etc.)
  regression: tests that fix a reported bug
  requires_executables: tests that requires certain executables in PATH to run
  nomockstage: use a stage area specifically created for this test, instead of relying on a common mock stage
  enable_compiler_verification: enable compiler verification within unit tests
  enable_compiler_link_paths: verifies compiler link paths within unit tests
  disable_clean_stage_check: avoid failing tests if there are leftover files in the stage area