platypush/tests/etc/config_test.yaml
Fabio Manganiello 666ea9ea6b
Added use_werkzeug_server option to backend.http.
There are situations where you may not want to run the HTTP server in a
full blown WSGI-over-Tornado container - unit/integration tests and
embedded single-core devices are among those cases.

In those scenarios, we should allow the user to be able to run the
backend using the built-in Werkzeug server provided by Flask.
2023-05-20 15:26:58 +02:00

14 lines
214 B
YAML

include:
- include/test_procedure.yaml
main.db:
engine: sqlite:////tmp/platypush-tests.db
backend.http:
port: 8123
num_workers: 1
use_werkzeug_server: True
backend.redis:
disabled: False