Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ repositories {
mavenLocal()
}

test {
// Exclude the swift:4.1 tests as it is deprecated.
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
exclude '**/*Swift41*'
}

tasks.withType(Test) {
systemProperties = System.getProperties() // Forward defined properties to the test JVM
testLogging {
Expand All @@ -17,11 +23,10 @@ tasks.withType(Test) {
outputs.upToDateWhen { false } // force tests to run every time
}


task testWithoutCredentials(type: Test) {
exclude '**/*Credentials*'

// Exclude the swift:4.1 tests as it is deprecated for the blueDeployment.
// Exclude the swift:4.1 tests as it is deprecated.
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
exclude '**/*Swift41*'
}
Expand All @@ -30,7 +35,7 @@ task testWithoutCredentials(type: Test) {
task testBlueCI(type: Test) {
exclude 'runtime/sdk/**'

// Exclude the swift:4.1 tests as it is deprecated for the blueDeployment.
// Exclude the swift:4.1 tests as it is deprecated.
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
exclude '**/*Swift41*'
}
Expand All @@ -39,7 +44,7 @@ task testBlueDeployment(type: Test) {
include 'runtime/integration/**'
include 'runtime/system/**'

// Exclude the swift:4.1 tests as it is deprecated for the blueDeployment.
// Exclude the swift:4.1 tests as it is deprecated.
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
exclude '**/*Swift41*'
}
Expand All @@ -55,7 +60,7 @@ task testSDK(type: Test) {
task testWithoutSDK(type: Test) {
exclude 'runtime/sdk/**'

// Exclude the swift:4.1 tests as it is deprecated for the blueDeployment.
// Exclude the swift:4.1 tests as it is deprecated.
// Once swift:4.1 is fully removed from this repo, the exclude can also be removed.
exclude '**/*Swift41*'
}
Expand Down