Skip CLI tests due to questrade dependency for now
parent
b6d8c300d4
commit
088ea8c3ec
|
@ -44,7 +44,6 @@ def confdir(request, test_config):
|
|||
if confdir is not None:
|
||||
config._override_config_dir(confdir)
|
||||
|
||||
# return config.load()[0]
|
||||
return confdir
|
||||
|
||||
|
||||
|
|
|
@ -10,6 +10,12 @@ import os.path
|
|||
import piker.watchlists as wl
|
||||
|
||||
|
||||
pytestmark = pytest.mark.skipif(
|
||||
True,
|
||||
reason="cli tests rely on quote api and questrade symbols"
|
||||
)
|
||||
|
||||
|
||||
def run(cmd, *args):
|
||||
"""Run cmd and check for zero return code.
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue