-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (22 loc) · 1.05 KB
/
pytest.ini
File metadata and controls
22 lines (22 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
pythonpath =
"test"
testpaths =
"test"
junit_logging = all
addopts =
--capture=tee-sys
-vv
markers =
unittests: tests of individual units of code
reports: tests of the report generation
build_debug: tests of the target builds with build type debug
build_release: tests of the target builds with build type release
static_analysis: tests of static code analysis
sca_options_file: tests of the SCA options file generation
sca_timeout: tests that the analysis_timeout terminates hanging polyspace processes
gate_develop_pr: tests to run during pull request validation targeting develop (fast feedback, blocks merge)
gate_develop_push: tests to run on develop branch pushes (standard CI verification)
gate_develop_nightly: tests to run in nightly scheduled builds on develop (comprehensive analysis)
gate_release_pr: tests to run during pull request validation targeting release (qualification + fast feedback)
gate_release: tests to run for release branch builds (full qualification)