Skip CLI tests due to questrade dependency for now

py3.9
Tyler Goodlet 2021-05-22 15:12:12 -04:00
parent b6d8c300d4
commit 088ea8c3ec
2 changed files with 6 additions and 1 deletions

View File

@ -44,7 +44,6 @@ def confdir(request, test_config):
if confdir is not None: if confdir is not None:
config._override_config_dir(confdir) config._override_config_dir(confdir)
# return config.load()[0]
return confdir return confdir

View File

@ -10,6 +10,12 @@ import os.path
import piker.watchlists as wl import piker.watchlists as wl
pytestmark = pytest.mark.skipif(
True,
reason="cli tests rely on quote api and questrade symbols"
)
def run(cmd, *args): def run(cmd, *args):
"""Run cmd and check for zero return code. """Run cmd and check for zero return code.
""" """