Belle II Software  release-05-02-19
simulation_doxygen_check.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 """
5 Perform code doxygen checks for every commit to the simulation package.
6 """
7 
8 import re
9 from b2test_utils import check_error_free
10 
11 if __name__ == "__main__":
12  ignoreme = ''
13  check_error_free("b2code-doxygen-warnings", "doxygen", "simulation",
14  lambda x: re.findall(ignoreme, x) or x is "'")