Skip to content

Commit f05a860

Browse files
committed
Fix running tests hardcoded to true
1 parent a00106d commit f05a860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/defer/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fun com.apollographql.apollo.gradle.api.Service.configureConnection(generateKotl
7777
tasks.withType(AbstractTestTask::class.java) {
7878
// Run the defer with Router and defer with Apollo Server tests only from a specific CI job
7979
val runDeferWithRouterTests = System.getenv("DEFER_WITH_ROUTER_TESTS").toBoolean()
80-
val runDeferWithApolloServerTests = true
80+
val runDeferWithApolloServerTests = System.getenv("DEFER_WITH_APOLLO_SERVER_TESTS").toBoolean()
8181
filter.setIncludePatterns(*buildList {
8282
if (runDeferWithRouterTests) add("test.DeferWithRouterTest")
8383
if (runDeferWithApolloServerTests) add("test.DeferWithApolloServerTest")

0 commit comments

Comments
 (0)