From 6bef365fd4080bb3e5f1e6cad85156c1f2e9b6c0 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 11 Nov 2018 21:05:44 -0500 Subject: [PATCH] Add conftest --- tests/conftest.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/conftest.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 00000000..e55cffbf --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,16 @@ +import pytest + + +@pytest.fixture +def us_symbols(): + return ['TSLA', 'AAPL', 'CGC', 'CRON'] + + +@pytest.fixture +def tmx_symbols(): + return ['APHA.TO', 'WEED.TO', 'ACB.TO'] + + +@pytest.fixture +def cse_symbols(): + return ['TRUL.CN', 'CWEB.CN', 'SNN.CN']