Skip to content

Commit ff99305

Browse files
committed
Introduce NoRegression JUnit category (#611)
1 parent 8485b94 commit ff99305

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

Jenkinsfile.nightly

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ pipeline {
114114
}
115115
steps {
116116
withMaven(mavenOpts: '-Xmx4g -Xss4m -ea', options: [artifactsPublisher(disabled: true), junitPublisher(healthScaleFactor: 1.0, keepLongStdio: true, skipPublishingChecks: false)]) {
117-
//TODO Remove using icfgtransformer tests as test of the jenkinsfile (was: -Dtest=QuadraticMatrixTest )
118-
sh 'cd trunk/source/BA_MavenParentUltimate && mvn -T 1C clean install -Pcoverage -Dmaven.test.failure.ignore=true'
117+
sh 'cd trunk/source/BA_MavenParentUltimate && mvn -T 1C clean install -Pcoverage -Dmaven.test.failure.ignore=true -DexcludedGroups=de.uni_freiburg.informatik.ultimate.test.junitextension.categories.NoRegression'
119118
}
120119
}
121120
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Copyright (C) 2023 Frank Schüssele ([email protected])
3+
* Copyright (C) 2015 University of Freiburg
4+
*
5+
* This file is part of the ULTIMATE JUnit Helper Library.
6+
*
7+
* The ULTIMATE JUnit Helper Library is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU Lesser General Public License as published
9+
* by the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* The ULTIMATE JUnit Helper Library is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU Lesser General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public License
18+
* along with the ULTIMATE JUnit Helper Library. If not, see <http://www.gnu.org/licenses/>.
19+
*
20+
* Additional permission under GNU GPL version 3 section 7:
21+
* If you modify the ULTIMATE JUnit Helper Library, or any covered work, by linking
22+
* or combining it with Eclipse RCP (or a modified version of Eclipse RCP),
23+
* containing parts covered by the terms of the Eclipse Public License, the
24+
* licensors of the ULTIMATE JUnit Helper Library grant you additional permission
25+
* to convey the resulting work.
26+
*/
27+
28+
package de.uni_freiburg.informatik.ultimate.test.junitextension.categories;
29+
30+
/**
31+
* This class is used as a JUnit category marker. Tests in this category are excluded from the nightly regression tests,
32+
* e.g. because they are just made to run locally.
33+
*
34+
* @author Frank Schüssele ([email protected])
35+
*
36+
*/
37+
public interface NoRegression {
38+
39+
}

0 commit comments

Comments
 (0)