forked from pulp-platform/Deeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
41 lines (32 loc) · 773 Bytes
/
pytest.ini
File metadata and controls
41 lines (32 loc) · 773 Bytes
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
37
38
39
40
41
# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
#
# SPDX-License-Identifier: Apache-2.0
[pytest]
# Pytest configuration for Deeploy tests
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Minimum version
minversion = 6.0
# Add current directory to Python path
pythonpath = .
# Default options
addopts =
-ra
--strict-markers
--strict-config
--showlocals
# Test output
console_output_style = progress
# Logging
log_cli = false
log_cli_level = INFO
log_cli_format = %(levelname)s %(message)s
# Warnings
filterwarnings =
error
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# VJUNG: Restrict test discovery to the DeeployTest dir
testpaths = DeeployTest