forked from quantumlib/Cirq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Rigetti from local checks (quantumlib#5632)
This remove the rigetti integration tests from the default of `pytest-and-incremental-coverage` and hence of `all`. It keeps these tests in the CI workflow. The alternative to this would be to add the docker up and down to these scripts, but I'm hesitant to do this as these download external docker images. Fixes quantumlib#4660
- Loading branch information
Showing
3 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|