Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Make tests headless by default (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz-invideo authored Mar 9, 2022
1 parent fb8f7b9 commit d89e5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ plugins {
}

//val headlessTests = true
val headlessTests = System.getenv("CI") == "true" || System.getenv("HEADLESS_TESTS") == "true"
val headlessTests = System.getenv("NON_HEADLESS_TESTS") != "true"
val useMimalloc = true
//val useMimalloc = false

Expand Down

0 comments on commit d89e5d6

Please sign in to comment.