Belle II Software development
tutorials_B2A4XX.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 B2A4XX tutorials."""
17
18 def test_tutorials(self):
19 """
20 Test supported tutorials.
21 """
22
23 self._test_examples_dir('analysis/examples/tutorials/', filepattern="B2A4", nevents=100)
24
25
26if __name__ == '__main__':
27 with clean_working_directory():
28 b2tua.unittest.main()