Skip to content

Commit

Permalink
small test environment improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
smacke committed Apr 8, 2023
1 parent d8d4a29 commit 1b2647d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

def should_skip_known_failing(reason="this test tests unimpled functionality"):
return {
"condition": os.environ.get("SHOULD_SKIP_KNOWN_FAILING", True),
"condition": bool(int(os.getenv("SHOULD_SKIP_KNOWN_FAILING", "1"))),
"reason": reason,
}

Expand Down

0 comments on commit 1b2647d

Please sign in to comment.