8000 gh-108303: Move all inspect test files to `test_inspect/` by sobolevn · Pull Request #109607 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-108303: Move all inspect test files to test_inspect/ #109607

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address review
  • Loading branch information
sobolevn committed Sep 21, 2023
commit 8d791b9be95d4906fa2f95b59c4a4c6d3e692a91
10 changes: 5 additions & 5 deletions Lib/test/test_inspect/test_inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
from test.support.script_helper import assert_python_ok, assert_python_failure
from test import support

from test.test_inspect import inspect_fodder as mod
from test.test_inspect import inspect_fodder2 as mod2
from test.test_inspect import inspect_stock_annotations
from test.test_inspect import inspect_stringized_annotations
from test.test_inspect import inspect_stringized_annotations_2
from . import inspect_fodder as mod
from . import inspect_fodder2 as mod2
from . import inspect_stock_annotations
from . import inspect_stringized_annotations
from . import inspect_stringized_annotations_2


# Functions tested in this suite:
Expand Down
0