Skip to content

Commit

Permalink
Try to enable the tests in org.eclipse.pde.build.tests
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Nov 20, 2023
1 parent f80789e commit c7eeb58
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/org.eclipse.pde.build.tests/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ bin.includes = META-INF/,\
test.xml
src.includes = about.html
jars.compile.order = .
pom.model.property.skipTests = true
pom.model.property.skipTests = false
pom.model.property.code.ignoredWarnings = ${tests.ignoredWarnings}
24 changes: 24 additions & 0 deletions build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,28 @@
<module>org.eclipse.pde.build</module>
<module>org.eclipse.pde.build.tests</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<dependencies>
<dependency>
<type>eclipse-plugin</type>
<artifactId>org.eclipse.osgi.compatibility.state</artifactId>
<version>0.0.0</version>
</dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.eclipse.equinox.executable</artifactId>
<version>0.0.0</version>
</dependency>
</dependencies>
<testRuntime>p2Installed</testRuntime>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit c7eeb58

Please sign in to comment.