mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
8 lines
207 B
Python
8 lines
207 B
Python
|
import pytest
|
||
|
from django.core.management import call_command
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session", autouse=True)
|
||
|
def collectstatic():
|
||
|
call_command("collectstatic", "--clear", "--noinput", "--verbosity=0")
|