Skip to content

Commit cd9f9b3

Browse files
committed
Fix ellipses in coverage excludes - it should not be treated as a regex.
1 parent 3a19184 commit cd9f9b3

File tree

130 files changed

+130
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+130
-130
lines changed

repo_helper/files/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def coverage_report(self):
485485
"if TYPE_CHECKING:",
486486
"if typing.TYPE_CHECKING:",
487487
"if __name__ == .__main__.:",
488-
"...",
488+
re.escape("..."),
489489
])
490490

491491
def check_wheel_contents(self):

tests/test_files/test_testing_/test_make_tox_matrix.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ exclude_lines =
143143
if TYPE_CHECKING:
144144
if typing.TYPE_CHECKING:
145145
if __name__ == .__main__.:
146-
...
146+
\.\.\.
147147
148148
[check-wheel-contents]
149149
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__no_stubs_devmode_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ exclude_lines =
140140
if TYPE_CHECKING:
141141
if typing.TYPE_CHECKING:
142142
if __name__ == .__main__.:
143-
...
143+
\.\.\.
144144
145145
[check-wheel-contents]
146146
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__no_stubs_devmode_no_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ exclude_lines =
131131
if TYPE_CHECKING:
132132
if typing.TYPE_CHECKING:
133133
if __name__ == .__main__.:
134-
...
134+
\.\.\.
135135
136136
[check-wheel-contents]
137137
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__no_stubs_no_devmode_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ exclude_lines =
139139
if TYPE_CHECKING:
140140
if typing.TYPE_CHECKING:
141141
if __name__ == .__main__.:
142-
...
142+
\.\.\.
143143
144144
[check-wheel-contents]
145145
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__no_stubs_no_devmode_no_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ exclude_lines =
130130
if TYPE_CHECKING:
131131
if typing.TYPE_CHECKING:
132132
if __name__ == .__main__.:
133-
...
133+
\.\.\.
134134
135135
[check-wheel-contents]
136136
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__stubs_devmode_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ exclude_lines =
142142
if TYPE_CHECKING:
143143
if typing.TYPE_CHECKING:
144144
if __name__ == .__main__.:
145-
...
145+
\.\.\.
146146
147147
[check-wheel-contents]
148148
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__stubs_devmode_no_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ exclude_lines =
133133
if TYPE_CHECKING:
134134
if typing.TYPE_CHECKING:
135135
if __name__ == .__main__.:
136-
...
136+
\.\.\.
137137
138138
[check-wheel-contents]
139139
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__stubs_no_devmode_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ exclude_lines =
141141
if TYPE_CHECKING:
142142
if typing.TYPE_CHECKING:
143143
if __name__ == .__main__.:
144-
...
144+
\.\.\.
145145
146146
[check-wheel-contents]
147147
ignore = W002

tests/test_files/test_testing_/test_make_tox_py_modules0_0_782_mypy_deps0__stubs_no_devmode_no_docs_.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ exclude_lines =
132132
if TYPE_CHECKING:
133133
if typing.TYPE_CHECKING:
134134
if __name__ == .__main__.:
135-
...
135+
\.\.\.
136136
137137
[check-wheel-contents]
138138
ignore = W002

0 commit comments

Comments
 (0)