This is an automated email from the ASF dual-hosted git repository.
joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
The following commit(s) were added to refs/heads/develop by this push:
new f7c9252af Revert "compiler: Maven build was excluding some tests that
don't need to be excluded"
f7c9252af is described below
commit f7c9252af5f3521f093505d96ab43ca27c17982c
Author: Josh Tynjala <[email protected]>
AuthorDate: Fri Jun 28 09:46:04 2024 -0700
Revert "compiler: Maven build was excluding some tests that don't need to
be excluded"
This reverts commit 7a7fe6a338482da996a6644dea817c876bc7ad5a.
It turns out that these tests were excluded by maven-surefire-plugin, but
they actually included by maven-failsafe-plugin, so reverting to avoid
duplicate testing.
---
compiler/pom.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/compiler/pom.xml b/compiler/pom.xml
index cd9540512..6f2fc38df 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -467,6 +467,7 @@
<include>**/*Tests.java</include>
</includes>
<excludes>
+ <exclude>as/**/*Tests.java</exclude>
<exclude>f/**</exclude>
<exclude>mxml/tags/**</exclude>
<exclude>properties/**</exclude>