1
- # Copyright 2014-2024 the openage authors. See copying.md for legal info.
1
+ # Copyright 2014-2025 the openage authors. See copying.md for legal info.
2
2
3
3
"""
4
4
Entry point for the code compliance checker.
@@ -18,16 +18,24 @@ def parse_args():
18
18
""" Returns the raw argument namespace. """
19
19
20
20
cli = argparse .ArgumentParser ()
21
- cli .add_argument ("--fast" , action = "store_true" ,
22
- help = "do all checks that can be performed quickly" )
23
- cli .add_argument ("--all" , action = "store_true" ,
24
- help = "do all checks, even the really slow ones" )
21
+ check_types = cli .add_mutually_exclusive_group ()
22
+ check_types .add_argument ("--fast" , action = "store_true" ,
23
+ help = "do all checks that can be performed quickly" )
24
+ check_types .add_argument ("--merge" , action = "store_true" ,
25
+ help = "do all checks that are required before merges to master" )
26
+ check_types .add_argument ("--all" , action = "store_true" ,
27
+ help = "do all checks, even the really slow ones" )
28
+
25
29
cli .add_argument ("--only-changed-files" , metavar = 'GITREF' ,
26
30
help = ("slow checks are only done on files that have "
27
31
"changed since GITREF." ))
28
32
cli .add_argument ("--authors" , action = "store_true" ,
29
33
help = ("check whether all git authors are in copying.md. "
30
34
"repo must be a git repository." ))
35
+ cli .add_argument ("--clang-tidy" , action = "store_true" ,
36
+ help = ("Check the C++ code with clang-tidy. Make sure you have build the "
37
+ "project with ./configure --clang-tidy or have set "
38
+ "CMAKE_CXX_CLANG_TIDY for your CMake build." ))
31
39
cli .add_argument ("--cppstyle" , action = "store_true" ,
32
40
help = "check the cpp code style" )
33
41
cli .add_argument ("--cython" , action = "store_true" ,
@@ -57,8 +65,6 @@ def parse_args():
57
65
help = "increase program verbosity" )
58
66
cli .add_argument ("-q" , "--quiet" , action = "count" , default = 0 ,
59
67
help = "decrease program verbosity" )
60
- cli .add_argument ("--clangtidy" , action = "store_true" ,
61
- help = "Check the C++ code with clang-tidy." )
62
68
63
69
args = cli .parse_args ()
64
70
process_args (args , cli .error )
@@ -78,7 +84,7 @@ def process_args(args, error):
78
84
# set up log level
79
85
log_setup (args .verbose - args .quiet )
80
86
81
- if args .fast or args .all :
87
+ if args .fast or args .merge or args . all :
82
88
# enable "fast" tests
83
89
args .authors = True
84
90
args .cppstyle = True
@@ -88,17 +94,19 @@ def process_args(args, error):
88
94
args .filemodes = True
89
95
args .textfiles = True
90
96
91
- if args .all :
92
- # enable tests that take a bit longer
93
-
97
+ if args .merge or args .all :
98
+ # enable tests that are required before merging to master
94
99
args .pystyle = True
95
100
args .pylint = True
96
101
args .test_git_change_years = True
97
- args .clangtidy = True
102
+
103
+ if args .all :
104
+ # enable tests that take a bit longer
105
+ args .clang_tidy = True
98
106
99
107
if not any ((args .headerguards , args .legal , args .authors , args .pystyle ,
100
108
args .cppstyle , args .cython , args .test_git_change_years ,
101
- args .pylint , args .filemodes , args .textfiles , args .clangtidy )):
109
+ args .pylint , args .filemodes , args .textfiles , args .clang_tidy )):
102
110
error ("no checks were specified" )
103
111
104
112
has_git = bool (shutil .which ('git' ))
@@ -130,7 +138,8 @@ def process_args(args, error):
130
138
if args .pylint :
131
139
if not importlib .util .find_spec ('pylint' ):
132
140
error ("pylint python module required for linting" )
133
- if args .clangtidy :
141
+
142
+ if args .clang_tidy :
134
143
if not shutil .which ('clang-tidy' ):
135
144
error ("--clang-tidy requires clang-tidy to be installed" )
136
145
@@ -270,7 +279,7 @@ def find_all_issues(args, check_files=None):
270
279
from .modes import find_issues
271
280
yield from find_issues (check_files , ('openage' , 'buildsystem' ,
272
281
'libopenage' , 'etc/gdb_pretty' ))
273
- if args .clangtidy :
282
+ if args .clang_tidy :
274
283
from .clangtidy import find_issues
275
284
yield from find_issues (check_files , ('libopenage' , ))
276
285
0 commit comments