-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release pins from all pytest-related packages (#6602)
Remove top-version limits on the pytest-related package. These pins were introduced a while ago and are hopefully not needed anymore. Require coverage>=7.4 which is the first minor release with the updated test-passing output from `coverage annotate`.
- Loading branch information
1 parent
bf67f29
commit df07e94
Showing
2 changed files
with
4 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -346,8 +346,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py HEAD\n' | ||
|
@@ -372,8 +370,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py main\n' | ||
|
@@ -390,8 +386,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py origin/main\n' | ||
|
@@ -408,8 +402,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py upstream/main\n' | ||
|
@@ -426,8 +418,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py upstream/main\n' | ||
|
@@ -456,8 +446,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py HEAD\n' | ||
|
@@ -474,8 +462,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout == ( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py main\n' | ||
|
@@ -499,8 +485,6 @@ def test_pytest_and_incremental_coverage_branch_selection(tmpdir_factory): | |
assert result.stdout.startswith( | ||
'INTERCEPTED check/pytest ' | ||
'--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' | ||
'No data to report.\n' | ||
'INTERCEPTED ' | ||
'python dev_tools/check_incremental_coverage_annotations.py ' | ||
|
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