Skip to content

Commit

Permalink
Use correct exclusion list for relaxed construction testing
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotn committed Nov 11, 2024
1 parent c218198 commit bc02ad1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
run: |
JBOSS_HOME=`pwd`'/wildfly'
export JBOSS_HOME=`echo $JBOSS_HOME`
mvn clean verify -Dincontainer -Dno-format -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dcdi.tck.suite.xml.file=src/test/tck/tck-tests.xml -Dadditional.vm.args="-Dorg.jboss.weld.construction.relaxed=true" -f jboss-tck-runner/pom.xml
mvn clean verify -Dincontainer -Dno-format -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dcdi.tck.suite.xml.file=src/test/tck/tck-tests-web.xml -Dadditional.vm.args="-Dorg.jboss.weld.construction.relaxed=true" -f jboss-tck-runner/pom.xml
- name: Prepare failure archive (if maven failed)
if: failure()
shell: bash
Expand Down
16 changes: 15 additions & 1 deletion jboss-tck-runner/src/test/tck/tck-tests-web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,21 @@
<!-- Issues in the spec -->

<!-- Issues in the TCK -->
<!-- CDITCK-597; test is only part of web profile of TCK and excluded there as well -->
<!-- https://github.com/jakartaee/cdi-tck/issues/440 -->
<class name="org.jboss.cdi.tck.tests.full.extensions.lifecycle.processBeanAttributes.specialization.VetoTest">
<methods>
<exclude name=".*"/>
</methods>
</class>

<!-- CDITCK-587 -->
<class name="org.jboss.cdi.tck.tests.event.observer.transactional.roolback.TransactionalObserverRollbackTest">
<methods>
<exclude name=".*"/>
</methods>
</class>

<!-- CDITCK-597 -->
<class name="org.jboss.cdi.tck.tests.deployment.packaging.ejb.EJBJarDeploymentTest">
<methods>
<exclude name=".*"/>
Expand Down

0 comments on commit bc02ad1

Please sign in to comment.