Skip to content

Commit

Permalink
test: Update task ordering (#1842)
Browse files Browse the repository at this point in the history
Fixes #1838 

## Test Plan
> How do we know the code works?

IT are green and happy again
  • Loading branch information
pawelpasterz authored Apr 26, 2021
1 parent 53b3fd3 commit 8386c03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integration_tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ tasks.register("integrationTests") {
tasks["integrationTestsIos"].mustRunAfter("integrationTestsAndroid")
}

tasks.withType<Test> {
dependsOn(":test_runner:build")
}

val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions {
freeCompilerArgs = listOf("-Xinline-classes")
}
// Locally you should have flank built already, on CI we need to build it
if (System.getenv("CI") != null) {
tasks["integrationTests"].dependsOn(":test_runner:build")
}

0 comments on commit 8386c03

Please # to comment.