-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpytest.ini
31 lines (24 loc) · 1.06 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
[pytest]
# This Configuration file stores py.test configuration settings
# Ignore the following directories' tests.
norecursedirs = .git env
# Output in color, run doctests
addopts = --color=yes -m 'not (owm_cli_test or mysql_source or postgres_source)'
# Add to run doctests: --doctest-modules
testpaths = tests
# Run tests from files matching this glob
python_files = tests/*Test.py
# Run tests from python_files with names matching this filter expression
python_functions = test*
;log_print = False
;console_output_style = classic
filterwarnings =
ignore::DeprecationWarning
markers =
inttest: Integration tests: make use of multiple components, remote resources, or the standard database
owm_cli_test: OWM CLI tests: tests focused around the use of the `owm` command line
sqlite_source: Tests of SQLite backend
mysql_source: Tests of MySQL backend
postgres_source: Tests of PostgreSQL backend
sftp: Test of SFTP-dependent features
core_bundle: Marker for fixtures that can provide a core bundle. Different fixtures may use it in different ways