forked from indico/indico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytest.ini
34 lines (34 loc) · 1015 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
[pytest]
; exclude unrelated folders and all old tests
norecursedirs =
.*
.git
indico/htdocs
indico/legacy
indico/locale
indico/migrations
indico/tests
test
build
dist
doc
etc
ext_modules
node_modules
addopts =
; more verbose summary (include skip/fail/error/warning), coverage
-rsfEw
; prevent too long Unix Socket paths in macOS
--basetemp=/tmp/pytest-indico
; only check for tests in suffixed files
python_files = *_test.py
; fail if there are warnings, but ignore ones that are likely just noise
filterwarnings =
error
ignore:.*not in session, add operation along.*:sqlalchemy.exc.SAWarning
; remove the next two after https://github.com/Kozea/WeasyPrint/issues/2318 is fixed
ignore:.*transform is deprecated, use set_matrix instead.*:DeprecationWarning
ignore:.*text_matrix is deprecated, use set_text_matrix instead.*:DeprecationWarning
ignore::UserWarning
; use redis-server from $PATH
redis_exec = redis-server