exclude ProvisionKeysTest from ci
This commit is contained in:
parent
7ceaebd65b
commit
a667cdb57b
2 changed files with 3 additions and 3 deletions
|
@ -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")
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue