Skip to content
Snippets Groups Projects

Don't make the test database in memory for beat.cmdline tests

Merged Samuel GAIST requested to merge test_configuration_cleanup into master
1 file
+ 0
5
Compare changes
  • Side-by-side
  • Inline
+ 0
5
@@ -28,7 +28,6 @@
# Django settings for tests
import os
import platform
import sys
from .settings import * # noqa
@@ -58,10 +57,6 @@ DATABASES["default"]["ATOMIC_REQUESTS"] = True # noqa
# Timeout used in test when waiting for an update
DB_REFRESH_TIMEOUT = int(os.environ.get("DB_REFRESH_TIMEOUT", 10))
if "beat.cmdline" in sys.argv:
# make it in-memory for cmdline app tests
DATABASES["default"]["NAME"] = ":memory:" # noqa
LOGGING["handlers"]["console"]["level"] = "DEBUG" # noqa
LOGGING["loggers"]["beat.core"]["handlers"] = ["discard"] # noqa
LOGGING["loggers"]["beat.web"]["handlers"] = ["discard"] # noqa
Loading