-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
37 lines (35 loc) · 1006 Bytes
/
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
33
34
35
36
37
[pytest]
env =
DJANGO_SETTINGS_MODULE=demoproject.settings
norecursedirs = data _plugin_template ~* .* node_modules
pythonpath = ./src, ./tests/demo
django_find_project = false
;log_format = %(asctime)s %(levelname)s %(message)s
;log_date_format = %Y-%m-%d %H:%M:%S
;log_print = true
log_cli = 0
log_cli_level = INFO
log_cli_format = [%(levelname)-8s] %(message)s (%(filename)s:%(lineno)s)
log_cli_date_format=%Y-%m-%d %H:%M:%S
addopts =
-rs
-p no:xdist
-p no:pep8
-p no:warnings
--reuse-db
--tb=short
--capture=no
--cov-report=html
--cov-config=tests/.coveragerc
--cov=djaxei
--echo-version=django
markers =
plugin: dispatcher test
incremental: incremental tests
skipif_missing: skip test if environment variable does not exists
paid: paid plugin test
cli: CLI related tests
selenium: Run selenium functional tests
python_files=test_*.py
filterwarnings =
ignore::DeprecationWarning