Belle II Software development
tutorials_B2A8XX.py
1#!/usr/bin/env python3
2
3
10
11from b2test_utils import clean_working_directory
12import b2test_utils_analysis as b2tua
13
14
15class TutorialsTest(b2tua.ExamplesTest):
16 """Test to run all B2A8XX tutorials."""
17 def test_tutorials(self):
18 """
19 Test supported tutorials.
20 """
21
22 self._test_examples_dir('analysis/examples/tutorials/', filepattern="B2A8", nevents=100)
23
24
25if __name__ == '__main__':
26 with clean_working_directory():
27 b2tua.unittest.main()