Skip to content

Commit

Permalink
Fix test that was failing with CPython
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt committed Jul 28, 2023
1 parent 26a317a commit 6115add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amazon/ionbenchmark/ion_benchmark_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def read_write_command(read_or_write: str):

iterations = int(arguments['--iterations'])
warmups = int(arguments['--warmups'])
c_extension = arguments['--c-extension'] if not pypy else False
c_extension = not (pypy or arguments['--no-c-extension'])
iterator = arguments['--iterator']
output = arguments['--results-file']
report_fields = arguments["--report"]
Expand Down

0 comments on commit 6115add

Please sign in to comment.