Skip to content

Commit c712909

Browse files
committed
TST: Skip test failing on Windos
1 parent f3e4775 commit c712909

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backtesting/test/_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,7 @@ def test_indicators_picklable(self):
999999
class TestDocs(TestCase):
10001000
DOCS_DIR = os.path.join(os.path.dirname(__file__), '..', '..', 'doc')
10011001

1002+
@unittest.skipIf('win' in sys.platform, "Locks up with `ModuleNotFoundError: No module named '<run_path>'`")
10021003
@unittest.skipUnless(os.path.isdir(DOCS_DIR), "docs dir doesn't exist")
10031004
def test_examples(self):
10041005
examples = glob(os.path.join(self.DOCS_DIR, 'examples', '*.py'))

0 commit comments

Comments
 (0)