Skip to content

Commit

Permalink
Fix tests and integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Dec 28, 2024
1 parent 8784659 commit 6d84bc5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_full.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "e2e"
name: "E2E"

on:
schedule:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
integration:
name: "e2e"
name: "E2E"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
1 change: 1 addition & 0 deletions scripts/check_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"is marked as overload, but no implementation is provided",
'"client" overrides symbol of same name in class "ResourceMeta"',
"must return value on all code paths",
"Argument to class must be a base class",
)
MYPY_IGNORED_MESSAGES = ("note:",)

Expand Down
7 changes: 5 additions & 2 deletions tests/import_helpers/test_import_record_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ def test_fallback(self) -> None:
),
(
"try:"
"\n from source import name as alias, name2\nexcept ImportError:"
"\n from source2 import name as alias, name2 # type: ignore[assignment]"
"\n from source import name2"
"\n from source import name as alias"
"\nexcept ImportError:"
"\n from source2 import name2 # type: ignore[assignment]"
"\n from source2 import name as alias # type: ignore[assignment]"
),
]

Expand Down

0 comments on commit 6d84bc5

Please sign in to comment.