mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-14 04:13:55 +01:00
25 lines
580 B
Python
25 lines
580 B
Python
import pytest
|
|
from django.core.management import call_command
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def _collectstatic():
|
|
call_command("collectstatic", interactive=False, verbosity=0)
|
|
|
|
|
|
@pytest.fixture()
|
|
def live_server(settings, live_server):
|
|
settings.STATICFILES_STORAGE = "whitenoise.storage.CompressedStaticFilesStorage"
|
|
return live_server
|
|
|
|
|
|
@pytest.fixture()
|
|
def firefox_options(firefox_options):
|
|
firefox_options.add_argument("-headless")
|
|
return firefox_options
|
|
|
|
|
|
@pytest.fixture()
|
|
def selenium(selenium):
|
|
selenium.implicitly_wait(3)
|
|
return selenium
|