-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pyhon): under-qualified types used by dynamic type checking (#3688)
The types must be referenced from the current module's root, including nesting class names, or the names will not be defined.
- Loading branch information
1 parent
f372e93
commit 833a717
Showing
6 changed files
with
38 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/jsii-pacmak/test/generated-code/__snapshots__/examples.test.js.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
packages/jsii-pacmak/test/generated-code/__snapshots__/target-python.test.js.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { createRequire } from 'node:module'; | ||
import { overriddenConfig } from '../../jest.config.mjs'; | ||
import { default as defaultConfig, overriddenConfig } from '../../jest.config.mjs'; | ||
|
||
export default overriddenConfig({ | ||
setupFiles: [createRequire(import.meta.url).resolve('./jestsetup.js')], | ||
testTimeout: process.env.CI ? 30_000 : defaultConfig.testTimeout, | ||
}); |