mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
17 lines
612 B
INI
17 lines
612 B
INI
[pytest]
|
|
; more verbose summary (include skip/fail/error/warning), coverage
|
|
addopts = -rsfEw --cov . --cov-report html --no-cov-on-fail
|
|
; only check for tests in suffixed files
|
|
python_files = *_test.py
|
|
; we need the livesync plugin to be loaded
|
|
indico_plugins = livesync
|
|
; fail if there are warnings, but ignore ones that are likely just noise
|
|
filterwarnings =
|
|
error
|
|
ignore:.*_app_ctx_stack.*:DeprecationWarning
|
|
ignore::sqlalchemy.exc.SAWarning
|
|
ignore::UserWarning
|
|
ignore:Creating a LegacyVersion has been deprecated:DeprecationWarning
|
|
; use redis-server from $PATH
|
|
redis_exec = redis-server
|