Skip to content

Commit 6d84bc5

Browse files
committed
Fix tests and integration
1 parent 8784659 commit 6d84bc5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/integration_full.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "e2e"
1+
name: "E2E"
22

33
on:
44
schedule:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
integration:
10-
name: "e2e"
10+
name: "E2E"
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:

scripts/check_output.py

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"is marked as overload, but no implementation is provided",
3939
'"client" overrides symbol of same name in class "ResourceMeta"',
4040
"must return value on all code paths",
41+
"Argument to class must be a base class",
4142
)
4243
MYPY_IGNORED_MESSAGES = ("note:",)
4344

tests/import_helpers/test_import_record_group.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ def test_fallback(self) -> None:
4545
),
4646
(
4747
"try:"
48-
"\n from source import name as alias, name2\nexcept ImportError:"
49-
"\n from source2 import name as alias, name2 # type: ignore[assignment]"
48+
"\n from source import name2"
49+
"\n from source import name as alias"
50+
"\nexcept ImportError:"
51+
"\n from source2 import name2 # type: ignore[assignment]"
52+
"\n from source2 import name as alias # type: ignore[assignment]"
5053
),
5154
]
5255

0 commit comments

Comments
 (0)