Skip to content

Commit e469ed9

Browse files
[pre-commit.ci] pre-commit autoupdate (#94)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/PyCQA/autoflake: v2.0.0 → v2.0.1](PyCQA/autoflake@v2.0.0...v2.0.1) - [github.com/psf/black: 22.12.0 → 23.1.0](psf/black@22.12.0...23.1.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 5c10d4c commit e469ed9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ default_language_version:
22
python: "3.10"
33
repos:
44
- repo: https://github.com/PyCQA/autoflake
5-
rev: v2.0.0
5+
rev: v2.0.1
66
hooks:
77
- id: autoflake
88
name: autoflake
@@ -16,7 +16,7 @@ repos:
1616
args: ['--application-directories=.:src']
1717
name: reorder python imports
1818
- repo: https://github.com/psf/black
19-
rev: 22.12.0
19+
rev: 23.1.0
2020
hooks:
2121
- id: black
2222
args: [--safe, --quiet]

src/pytest_cpp/catch2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def run_test(
117117

118118
results = self._parse_xml(xml_filename)
119119

120-
for (executed_test_id, failures, skipped) in results:
120+
for executed_test_id, failures, skipped in results:
121121
if executed_test_id == test_id:
122122
if failures:
123123
return (

src/pytest_cpp/google.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def run_test(
123123

124124
results = self._parse_xml(xml_filename)
125125

126-
for (executed_test_id, failures, skipped) in results:
126+
for executed_test_id, failures, skipped in results:
127127
if executed_test_id == test_id:
128128
if failures:
129129
return [GoogleTestFailure(x) for x in failures], output

0 commit comments

Comments
 (0)