Skip to content
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

Fix coverage exclusion syntax #6241

Merged
merged 7 commits into from
Aug 18, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add missing space to coverage-exclusion comment
  • Loading branch information
pavoljuhas committed Aug 16, 2023
commit 15d428cc2935dcf3c6746dfe4f54086f09705f20
2 changes: 1 addition & 1 deletion cirq-rigetti/cirq_rigetti/service_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_rigetti_qcs_service_api_call():

class Response(httpx.Response):
def iter_bytes(self, chunk_size: Optional[int] = None) -> Iterator[bytes]:
yield b"{\"quantumProcessors\": [{\"id\": \"Aspen-8\"}]}" # pragma: nocover
yield b"{\"quantumProcessors\": [{\"id\": \"Aspen-8\"}]}" # pragma: no cover

class Transport(httpx.BaseTransport):
def handle_request(self, request: httpx.Request) -> httpx.Response:
Expand Down