mirror of
https://github.com/Ichinga-Samuel/aiomql.git
synced 2026-08-03 07:17:49 +00:00
15 lines
273 B
Python
15 lines
273 B
Python
import pytest
|
|
from aiomql import Config
|
|
import MetaTrader5
|
|
|
|
|
|
@pytest.fixture(scope='session', autouse=True)
|
|
def config():
|
|
config = Config(filename='test.json')
|
|
return config
|
|
|
|
|
|
@pytest.fixture(scope='session', autouse=True)
|
|
def metatrader5():
|
|
return MetaTrader5
|