exclude ProvisionKeysTest from ci

This commit is contained in:
az 2022-04-08 17:14:58 +02:00
parent 7ceaebd65b
commit a667cdb57b
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ test {
useJUnitPlatform {
def excludedTags = System.getProperty("excludeTags")
if (System.getProperty("excludeTags") != null) {
excludeTags(excludedTags)
excludeTags(excludedTags.split(","))
}
if (System.getenv("CI_JOB_TOKEN") != null) {
excludeTags("containernonci")

View file

@ -2,13 +2,13 @@ package org.domaindrivenarchitecture.provs.framework.ubuntu.keys
import org.domaindrivenarchitecture.provs.framework.core.Secret
import org.domaindrivenarchitecture.provs.test.defaultTestContainer
import org.domaindrivenarchitecture.provs.test.tags.ContainerTest
import org.domaindrivenarchitecture.provs.test.tags.NonCi
import org.junit.jupiter.api.Test
internal class ProvisionKeysTest {
@Test
@ContainerTest
@NonCi
fun provisionKeys() {
// given
val a = defaultTestContainer()