2021-02-01 18:12:51 +01:00
|
|
|
# standard imports
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
root_dir = os.path.dirname(script_dir)
|
|
|
|
sys.path.insert(0, root_dir)
|
|
|
|
|
|
|
|
from tests.fixtures_config import *
|
2021-03-12 18:44:29 +01:00
|
|
|
from tests.fixtures_chainlib import *
|
2021-02-01 18:12:51 +01:00
|
|
|
from tests.fixtures_celery import *
|
|
|
|
from tests.fixtures_database import *
|
2021-03-12 18:44:29 +01:00
|
|
|
from tests.fixtures_registry import *
|