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 {
|
useJUnitPlatform {
|
||||||
def excludedTags = System.getProperty("excludeTags")
|
def excludedTags = System.getProperty("excludeTags")
|
||||||
if (System.getProperty("excludeTags") != null) {
|
if (System.getProperty("excludeTags") != null) {
|
||||||
excludeTags(excludedTags)
|
excludeTags(excludedTags.split(","))
|
||||||
}
|
}
|
||||||
if (System.getenv("CI_JOB_TOKEN") != null) {
|
if (System.getenv("CI_JOB_TOKEN") != null) {
|
||||||
excludeTags("containernonci")
|
excludeTags("containernonci")
|
||||||
|
|
|
@ -2,13 +2,13 @@ package org.domaindrivenarchitecture.provs.framework.ubuntu.keys
|
||||||
|
|
||||||
import org.domaindrivenarchitecture.provs.framework.core.Secret
|
import org.domaindrivenarchitecture.provs.framework.core.Secret
|
||||||
import org.domaindrivenarchitecture.provs.test.defaultTestContainer
|
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
|
import org.junit.jupiter.api.Test
|
||||||
|
|
||||||
internal class ProvisionKeysTest {
|
internal class ProvisionKeysTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ContainerTest
|
@NonCi
|
||||||
fun provisionKeys() {
|
fun provisionKeys() {
|
||||||
// given
|
// given
|
||||||
val a = defaultTestContainer()
|
val a = defaultTestContainer()
|
||||||
|
|
Loading…
Reference in a new issue