We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 493ba19 commit c49d192Copy full SHA for c49d192
backtesting/test/_test.py
@@ -909,7 +909,8 @@ def test_examples(self):
909
self.assertGreaterEqual(len(examples), 4)
910
with chdir(gettempdir()):
911
for file in examples:
912
- run_path(file)
+ with self.subTest(example=os.path.basename(file)):
913
+ run_path(file)
914
915
def test_backtest_run_docstring_contains_stats_keys(self):
916
stats = Backtest(SHORT_DATA, SmaCross).run()
0 commit comments