Skip to content

Commit c55fd89

Browse files
committed
CI/TST: Skip slow test on Windos
1 parent 8cbcc3c commit c55fd89

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
@@ -86,6 +86,7 @@ def test_run_invalid_param(self):
8686
bt = Backtest(GOOG, SmaCross)
8787
self.assertRaises(AttributeError, bt.run, foo=3)
8888

89+
@unittest.skipIf('win' in sys.platform, 'Slow on CI')
8990
def test_run_speed(self):
9091
bt = Backtest(GOOG, SmaCross)
9192
start = time.process_time()

0 commit comments

Comments
 (0)