Skip to content

Commit

Permalink
Change deterministic value to False as default in action classificati…
Browse files Browse the repository at this point in the history
…on perf test (#3799)

change deterministic value to False in perf test
  • Loading branch information
eunwoosh authored Aug 7, 2024
1 parent 7f7f299 commit 6f746cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/test_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def fxt_deterministic(request: pytest.FixtureRequest) -> bool:
"""Override the deterministic setting for action classification task."""
deterministic = request.config.getoption("--deterministic")
deterministic = True if deterministic is None else deterministic == "true"
deterministic = False if deterministic is None else deterministic == "true"
log.info(f"{deterministic=}")
return deterministic

Expand Down

0 comments on commit 6f746cf

Please sign in to comment.