Belle II Software development
graFEI_examples.py
1#!/usr/bin/env python3
2# -- analysis/tests/graFEI_examples.py
3
4
11
12import b2test_utils as b2tu
13import b2test_utils_analysis as b2tua
14
15
16
17
18class ExamplesTest(b2tua.ExamplesTest):
20 """
21 Test supported GraFEI examples.
22 """
23
24 self._test_examples_dir('analysis/examples/GraFEI/')
25
26
27if __name__ == '__main__':
28 with b2tu.clean_working_directory():
29 b2tua.unittest.main()
extend the examples test class to actually run over the GraFEI examples: