mirror of
https://github.com/Ichinga-Samuel/aiomql.git
synced 2026-08-18 14:28:08 +00:00
14 lines
312 B
Python
14 lines
312 B
Python
import pytest
|
|
from aiomql import MetaTester, TestData, MetaTrader, 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(config):
|
|
return MetaTrader5 |