Skip to content

Commit

Permalink
Use scijava 35.1.1 (last working version), run wrapper tests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoube committed Oct 13, 2023
1 parent 10a615e commit e409ef5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion Modern/wrapperPlugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@

<profiles>
<profile>
<!-- Run all tests with no time-out -->
<id>unitTests</id>
<activation>
<activeByDefault>true</activeByDefault>
Expand All @@ -260,14 +261,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludedGroups>org.bonej.wrapperPlugins.SlowWrapperTest</excludedGroups>
<forkedProcessTimeoutInSeconds>0</forkedProcessTimeoutInSeconds>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Run all tests with default time-out -->
<id>allTests</id>
<build>
<plugins>
Expand All @@ -278,5 +279,21 @@
</plugins>
</build>
</profile>
<profile>
<!-- Exclude slow wrapper tests, e.g. if interested in some tweak to a low-level algorithm but not the UI -->
<id>fastTests</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludedGroups>org.bonej.wrapperPlugins.SlowWrapperTest</excludedGroups>
<forkedProcessTimeoutInSeconds>0</forkedProcessTimeoutInSeconds>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>34.1.0</version>
<version>35.1.1</version>
<relativePath />
</parent>

Expand Down

0 comments on commit e409ef5

Please sign in to comment.