Skip to content

Fix cirq coverage test #779

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 28 additions & 14 deletions src/openfermion/testing/wrapped.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

import cirq

_setup_code = ('import cirq\n'
'import numpy as np\n'
'import sympy\n'
'import openfermion\n')
_setup_code = ("import cirq\n"
"import numpy as np\n"
"import sympy\n"
"import openfermion\n")


def assert_equivalent_repr(value: Any, *,
Expand All @@ -39,19 +39,33 @@ def assert_implements_consistent_protocols(
val: Any,
*,
exponents: Sequence[Any] = (0, 1, -1, 0.5, 0.25, -0.5, 0.1,
sympy.Symbol('s')),
sympy.Symbol("s")),
qubit_count: Optional[int] = None,
ignoring_global_phase: bool = False,
setup_code: str = _setup_code,
global_vals: Optional[Dict[str, Any]] = None,
local_vals: Optional[Dict[str, Any]] = None) -> None:
"""Checks that a value is internally consistent and has a good __repr__."""

cirq.testing.assert_implements_consistent_protocols(
val,
exponents=exponents,
qubit_count=qubit_count,
ignoring_global_phase=ignoring_global_phase,
setup_code=setup_code,
global_vals=global_vals,
local_vals=local_vals)
try:
# Cirq 0.14
cirq.testing.assert_implements_consistent_protocols(
val,
exponents=exponents,
qubit_count=qubit_count,
ignoring_global_phase=ignoring_global_phase,
ignore_decompose_to_default_gateset=True,
setup_code=setup_code,
global_vals=global_vals,
local_vals=local_vals,
)
except TypeError: # coverage: ignore
# Cirq 0.12
cirq.testing.assert_implements_consistent_protocols( # coverage: ignore
val, # coverage: ignore
exponents=exponents, # coverage: ignore
qubit_count=qubit_count, # coverage: ignore
ignoring_global_phase=ignoring_global_phase, # coverage: ignore
setup_code=setup_code, # coverage: ignore
global_vals=global_vals, # coverage: ignore
local_vals=local_vals, # coverage: ignore
) # coverage: ignore