Skip to content

Commit

Permalink
exclude :instrumentation:test
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Mar 27, 2023
1 parent d28cb6b commit 87523a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ tasks {
partitionTasks.forEach { task ->
var taskPath = task.project.path + ":" + task.name
// smoke tests are run separately
if (taskPath != ":smoke-tests:test") {
// :instrumentation:test runs all instrumentation tests
if (taskPath != ":smoke-tests:test" && taskPath != ":instrumentation:test") {
writer.println(taskPath)
}
}
Expand Down

0 comments on commit 87523a8

Please sign in to comment.