Skip to content

Remove Rigetti from local checks #5632

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 2 commits into from
Jun 27, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
- name: Run Quil dependencies
run: docker-compose -f cirq-rigetti/docker-compose.test.yaml up -d
- name: Coverage check
run: check/pytest-and-incremental-coverage -n auto
run: check/pytest-and-incremental-coverage -n auto --rigetti-integration
- name: Stop Quil dependencies
run: docker-compose -f cirq-rigetti/docker-compose.test.yaml down
windows:
Expand Down
1 change: 0 additions & 1 deletion check/pytest-and-incremental-coverage
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ source dev_tools/pypath

# Run tests while producing coverage files.
check/pytest --actually-quiet \
--rigetti-integration \
--cov \
--cov-config=dev_tools/conf/.coveragerc \
"${PYTEST_ARGS[@]}"
Expand Down
16 changes: 8 additions & 8 deletions dev_tools/bash_scripts_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand All @@ -374,7 +374,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand All @@ -393,7 +393,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand All @@ -412,7 +412,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand All @@ -431,7 +431,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand Down Expand Up @@ -462,7 +462,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand All @@ -481,7 +481,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout == (
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand All @@ -507,7 +507,7 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory):
assert result.returncode == 0
assert result.stdout.startswith(
'INTERCEPTED check/pytest '
'--actually-quiet --rigetti-integration --cov '
'--actually-quiet --cov '
'--cov-config=dev_tools/conf/.coveragerc\n'
'The annotate command will be removed in a future version.\n'
'Get in touch if you still use it: [email protected]\n'
Expand Down