2022-10-28 22:16:23 +02:00
|
|
|
import pytest
|
|
|
|
from django.core.management import call_command
|
2023-01-16 18:02:14 +01:00
|
|
|
from selenium.webdriver.remote.webdriver import WebDriver
|
2022-10-28 22:16:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
|
|
def collectstatic():
|
|
|
|
call_command("collectstatic", "--clear", "--noinput", "--verbosity=0")
|
2022-11-10 19:23:47 +01:00
|
|
|
|
|
|
|
|
2023-01-16 18:02:14 +01:00
|
|
|
@pytest.fixture
|
|
|
|
def live_server(settings, live_server):
|
|
|
|
settings.STATICFILES_STORAGE = "whitenoise.storage.CompressedStaticFilesStorage"
|
|
|
|
return live_server
|
|
|
|
|
|
|
|
|
2022-11-10 19:23:47 +01:00
|
|
|
@pytest.fixture
|
|
|
|
def firefox_options(firefox_options):
|
|
|
|
firefox_options.add_argument("-headless")
|
|
|
|
return firefox_options
|
2022-11-11 08:59:18 +01:00
|
|
|
|
|
|
|
|
2023-01-16 18:02:14 +01:00
|
|
|
@pytest.fixture
|
|
|
|
def selenium(selenium: WebDriver) -> WebDriver:
|
|
|
|
selenium.implicitly_wait(3)
|
|
|
|
selenium.set_window_size(3860, 2140)
|
|
|
|
return selenium
|
|
|
|
|
|
|
|
|
2022-11-11 08:59:18 +01:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def settings(settings):
|
|
|
|
settings.DEBUG_TOOLBAR = False
|
|
|
|
return settings
|
2022-11-19 09:45:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def initial_data(db: None) -> None:
|
|
|
|
call_command("loaddata", "initial_data")
|