generated from RedHatQE/python-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpytest.ini
32 lines (27 loc) · 1.15 KB
/
pytest.ini
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
[pytest]
testpaths = tests
markers =
# General
polarion: Store polarion test ID
jira: Store jira bug ID
# CI
smoke: Mark tests as smoke tests; covers core functionality of the product. Aims to ensure that the build is stable enough for further testing.
sanity: Mark tests as sanity tests. Aims to verify that specific functionality is working as expected.
tier1: Mark tests as tier1. Aims to cover frequently used functionality of the product and basic user flows.
tier2: Mark tests as tier2. Aims to cover more advanced functionality of the product.
slow: Mark tests which take more than 10 minutes as slow tests.
pre_upgrade: Mark tests which should be run before upgrading the product.
post_upgrade: Mark tests which should be run after upgrading the product.
# Model server
modelmesh: Mark tests which are model mesh tests
serverless: Mark tests which are serverless tests
rawdeployment: Mark tests which are raw deployment tests
addopts =
-s
-p no:logging
--basetemp=/tmp/pytest
--strict-markers
--show-progress
--tc-file=tests/global_config.py
--tc-format=python
--jira