Skip to content

Commit 9163167

Browse files
committed
Merge remote-tracking branch 'origin/main' into raisesgroup
2 parents 5186f36 + d622fdb commit 9163167

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/update-plugin-list.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Create Pull Request
5050
id: pr
51-
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
51+
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284
5252
with:
5353
commit-message: '[automated] Update plugin list'
5454
author: 'pytest bot <[email protected]>'

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: "v0.9.7"
3+
rev: "v0.9.9"
44
hooks:
55
- id: ruff
66
args: ["--fix"]
@@ -12,7 +12,7 @@ repos:
1212
- id: end-of-file-fixer
1313
- id: check-yaml
1414
- repo: https://github.com/woodruffw/zizmor-pre-commit
15-
rev: v1.3.1
15+
rev: v1.4.1
1616
hooks:
1717
- id: zizmor
1818
- repo: https://github.com/adamchainz/blacken-docs
@@ -48,7 +48,7 @@ repos:
4848
# on <3.11
4949
- exceptiongroup>=1.0.0rc8
5050
- repo: https://github.com/tox-dev/pyproject-fmt
51-
rev: "v2.5.0"
51+
rev: "v2.5.1"
5252
hooks:
5353
- id: pyproject-fmt
5454
# https://pyproject-fmt.readthedocs.io/en/latest/#calculating-max-supported-python-version

testing/acceptance_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -999,14 +999,14 @@ def test_calls_showall_durationsmin_verbose(
999999
def check_tests_in_output(
10001000
lines: Sequence[str], *expected_test_numbers: int, number_of_tests: int = 3
10011001
) -> None:
1002-
found_test_numbers = set(
1002+
found_test_numbers = {
10031003
test_number
10041004
for test_number in range(1, number_of_tests + 1)
10051005
if any(
10061006
line.endswith(f"test_{test_number}") and " call " in line
10071007
for line in lines
10081008
)
1009-
)
1009+
}
10101010
assert found_test_numbers == set(expected_test_numbers)
10111011

10121012
def test_with_deselected(self, pytester: Pytester, mock_timing) -> None:

0 commit comments

Comments
 (0)