27
27
import java .nio .file .Files ;
28
28
import java .util .Collections ;
29
29
import org .junit .jupiter .api .BeforeAll ;
30
+ import org .junit .jupiter .api .Tag ;
30
31
import org .junit .jupiter .api .Test ;
31
32
import org .junit .jupiter .api .extension .RegisterExtension ;
32
33
import org .junit .jupiter .api .parallel .Execution ;
40
41
@ Execution (ExecutionMode .CONCURRENT )
41
42
class PythonRulingTest {
42
43
43
-
44
44
@ RegisterExtension
45
45
public static final OrchestratorExtension ORCHESTRATOR = getOrchestrator ();
46
46
public static final Configuration CONFIGURATION = ORCHESTRATOR .getConfiguration ();
@@ -65,6 +65,7 @@ static void install_sonar_scanner() {
65
65
}
66
66
67
67
@ Test
68
+ @ Tag ("big-it-project" )
68
69
void test_airflow () throws IOException {
69
70
SonarScanner build = buildWithCommonProperties ("airflow" );
70
71
build .setProperty ("sonar.sources" , "airflow" );
@@ -167,6 +168,7 @@ void test_docker_compose() throws IOException {
167
168
}
168
169
169
170
@ Test
171
+ @ Tag ("big-it-project" )
170
172
void test_indico () throws IOException {
171
173
SonarScanner build = buildWithCommonProperties ("indico" );
172
174
build .setProperty ("sonar.sources" , "indico" );
@@ -222,13 +224,15 @@ void test_pecos() throws IOException {
222
224
}
223
225
224
226
@ Test
227
+ @ Tag ("big-it-project" )
225
228
void test_saleor () throws IOException {
226
229
SonarScanner build = buildWithCommonProperties ("saleor" );
227
230
build .setProperty ("sonar.sources" , "saleor" );
228
231
executeBuild (build );
229
232
}
230
233
231
234
@ Test
235
+ @ Tag ("big-it-project" )
232
236
void test_salt () throws IOException {
233
237
SonarScanner build = buildWithCommonProperties ("salt" );
234
238
// salt is not actually a Python 3.12 project. This is to ensure analysis is performed correctly when the parameter is set.
@@ -252,6 +256,7 @@ void test_specific_rules() throws IOException {
252
256
}
253
257
254
258
@ Test
259
+ @ Tag ("big-it-project" )
255
260
void test_tensorflow () throws IOException {
256
261
SonarScanner build = buildWithCommonProperties ("tensorflow" );
257
262
build .setProperty ("sonar.sources" , "python" );
0 commit comments