Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
fix: run all tests rather than stopping on first failure locally (#7298)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdaudali authored Sep 19, 2024
1 parent d71c6d2 commit b2d47ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/@unreleased/pr-7298.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type: fix
fix:
description: Run all tests rather than stopping on first failure locally
links:
- https://github.com/palantir/atlasdb/pull/7298
2 changes: 1 addition & 1 deletion gradle/shared.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ afterEvaluate {

tasks.withType(Test) {
enableAssertions = true
failFast = true
failFast = System.getenv().containsKey('CI')
}

ext.atlasdb_shaded = 'com.palantir.atlasdb.shaded.'

0 comments on commit b2d47ed

Please sign in to comment.