Configure gh-exclude as it was done for other tags

This commit is contained in:
Marcos Pereira 2021-08-24 11:27:47 -04:00
parent 554044e387
commit d5bd868d62
No known key found for this signature in database
GPG key ID: F7EBB0FF122A3D87
2 changed files with 1 additions and 1 deletions

View file

@ -94,7 +94,6 @@ jobs:
sbt -jvm-opts .jvmopts-ci \
-Dakka.mima.enabled=false \
-Dakka.ci-server=true \
-Dakka.test.tags.exclude=performance,timing,long-running,gh-exclude \
-Dakka.test.multi-in-test=false \
-Dakka.test.timefactor=2 \
-Dakka.cluster.assert=on \

View file

@ -47,6 +47,7 @@ object AkkaValidatePullRequest extends AutoPlugin {
ValidatePR / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-l", "performance"),
ValidatePR / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-l", "long-running"),
ValidatePR / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-l", "timing"),
ValidatePR / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-l", "gh-exclude"),
// make it fork just like regular test running
ValidatePR / fork := (Test / fork).value,
ValidatePR / testGrouping := (Test / testGrouping).value,