Skip to content

Commit

Permalink
fix: Linters
Browse files Browse the repository at this point in the history
  • Loading branch information
kshyatt-aws committed Sep 24, 2024
1 parent c870d49 commit 14c8119
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions benchmark/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ def test_exact_shots(benchmark, device_id, nq, exact_results, circuit):
def test_exact_shots_batched(
benchmark, device_id, nq, batch_size, exact_results, circuit
):
if device_id in ("braket_dm_v2", "braket_dm") and (exact_results in ("state_vector,") or nq >= 5):
if device_id in ("braket_dm_v2", "braket_dm") and (
exact_results in ("state_vector,") or nq >= 5
):
pytest.skip()
if nq >= 10:
pytest.skip()
Expand Down Expand Up @@ -136,7 +138,7 @@ def test_nonzero_shots_batched(
pytest.skip()
if nq >= 10:
pytest.skip()

# skip all for now as this is very expensive
pytest.skip()

Expand Down

0 comments on commit 14c8119

Please sign in to comment.