Skip to content

Commit

Permalink
Relax execution requirement to 0.2
Browse files Browse the repository at this point in the history
Passes locally for me, CI is a little slower
  • Loading branch information
asmacdo committed Aug 21, 2024
1 parent 691c46c commit ebf7b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_sanity_green(temp_output_dir: str) -> None:
)
t0 = time()
assert execute(args) == 0
assert time() - t0 < 0.1 # we should not wait for a sample or report interval
assert time() - t0 < 0.2 # we should not wait for a sample or report interval
assert_expected_files(temp_output_dir)
# TODO check usagefile empty

Expand Down

0 comments on commit ebf7b17

Please sign in to comment.