Skip to content

Commit

Permalink
chore: print string program diff
Browse files Browse the repository at this point in the history
  • Loading branch information
jselig-rigetti committed Sep 20, 2023
1 parent 353974f commit 7008303
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ check-types:

.PHONY: test
test:
python -m pytest -v --cov=$(PACKAGE_NAME) --cov-report=term --doctest-modules tests qiskit_rigetti -x
python -m pytest -v --cov=$(PACKAGE_NAME) --cov-report=term --doctest-modules tests qiskit_rigetti

.PHONY: docs
docs:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_qcs_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def before_execute_hook(quil: Program) -> Program:
make_job(backend, circuit, qc, before_execute=[before_execute_hook])

program: Program = native_quil_to_executable_spy.call_args[0][0]
assert program == new_quil
assert str(program) == str(new_quil)


def test_init__ensure_native_quil__true(backend: RigettiQCSBackend, mocker: MockerFixture):
Expand Down

0 comments on commit 7008303

Please sign in to comment.