exclude tests using DisposableSys from aeron run (#31230)

* exclude tests using DisposableSys from aeron run

* add 'gh-exclude-aeron' to 'akka.test.tags.exclude' settings
This commit is contained in:
Renato Cavalcanti 2022-03-10 18:45:45 +01:00 committed by GitHub
parent e534eb78d3
commit a2a90d6325
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -137,11 +137,10 @@ jobs:
sbt -jvm-opts .jvmopts-ci \
-Dakka.test.timefactor=2 \
-Dakka.actor.testkit.typed.timefactor=2 \
-Dakka.test.tags.exclude=gh-exclude,timing \
-Dakka.cluster.assert=on \
-Dakka.remote.artery.transport=aeron-udp \
-Dsbt.override.build.repos=false \
-Dakka.test.tags.exclude=gh-exclude,timing \
-Dakka.test.tags.exclude=gh-exclude,gh-exclude-aeron,timing \
-Dakka.test.multi-node=true \
-Dakka.test.multi-node.targetDirName=${PWD}/target/${{ github.run_id }} \
-Dakka.test.multi-node.java=${JAVA_HOME}/bin/java \

View file

@ -24,6 +24,7 @@ import akka.pattern.ask
import akka.remote.testconductor.RoleName
import akka.remote.testkit.MultiNodeConfig
import akka.remote.testkit.MultiNodeSpec
import akka.testkit.GHExcludeAeronTest
import akka.testkit.ImplicitSender
import akka.testkit.LongRunningTest
import akka.testkit.TestKit
@ -404,7 +405,7 @@ class RandomizedSplitBrainResolverIntegrationSpec
"SplitBrainResolver with lease" must {
for (scenario <- scenarios) {
scenario.toString taggedAs (LongRunningTest) in {
scenario.toString.taggedAs(LongRunningTest, GHExcludeAeronTest) in {
DisposableSys(scenario).verify()
}
}

View file

@ -27,6 +27,7 @@ import akka.pattern.ask
import akka.remote.testconductor.RoleName
import akka.remote.testkit.MultiNodeConfig
import akka.remote.testkit.MultiNodeSpec
import akka.testkit.GHExcludeAeronTest
import akka.testkit.ImplicitSender
import akka.testkit.LongRunningTest
import akka.testkit.TestKit
@ -457,7 +458,7 @@ class SplitBrainResolverIntegrationSpec
"Cluster SplitBrainResolver" must {
for (scenario <- scenarios) {
scenario.toString taggedAs LongRunningTest in {
scenario.toString.taggedAs(LongRunningTest, GHExcludeAeronTest) in {
DisposableSys(scenario).verify()
}
}