Skip to content

Commit

Permalink
[Mod] tests_import_all: skip importing XTP under OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
nanoric committed Jul 5, 2019
1 parent a8f06a0 commit 304072f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_import_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ def test_import_tiger(self):
def test_import_tora(self):
from vnpy.gateway.tora import ToraGateway

@unittest.skipIf(platform.system() == "Linux", "Not supported yet under Linux")
@unittest.skipIf(platform.system() == "Darwin", "Not supported yet under osx")
def test_import_xtp(self):
from vnpy.gateway.xtp import XtpGateway

Expand Down

0 comments on commit 304072f

Please sign in to comment.