-
-
Notifications
You must be signed in to change notification settings - Fork 31.3k
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
bpo-10572: Move tkinter tests to /test #18727
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not touch sqlite3 tests. It needs more work than just moving things around.
Also, submitting separate PRs for each module would increase the chance of getting them accepted.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
d659ed4
to
ffa202d
Compare
Lib/test/test_tk.py
Outdated
@@ -5,7 +5,7 @@ | |||
# Skip test if tk cannot be initialized. | |||
support.requires('gui') | |||
|
|||
from tkinter.test import runtktests | |||
from Lib.test.tkinter_test import runtktests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can’t be correct. Lib
is not an importable Python package, it is a path containing modules and packages.
The new import should be from test.tkinter_test import runtktests
.
(Or for what it’s worth, this nearly empty file could be removed, if the new package for tkinter tests would be named in a way that’s automatically found by unittest discover and runtests)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, I think it might be better to separate the changes no?
Like the first stage - migrate the module. Second stage - remove redundant legacy files.
I have made the requested changes; please review again |
Thanks for making the requested changes! @berkerpeksag: please review the changes made to this pull request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think that the actual tkinter tests should be installed unless tkinter is installed. So I don't think that tkinter tests should be changed. I certainly would not do so unless Serhiy wants the move and approves of how it is done.
EDIT: So I am actually suggesting that this be closed and that you pick something else to move that is always installed.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
@@ -5,7 +5,7 @@ | |||
# Skip test if tk cannot be initialized. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lib/__init__.py
should be deleted.
@@ -3,7 +3,7 @@ | |||
# Skip this test if _tkinter does not exist. | |||
support.import_module('_tkinter') | |||
|
|||
from tkinter.test import runtktests | |||
from test.tkinter_test import runtktests | |||
|
|||
def test_main(): | |||
support.run_unittest( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After moving the tests, files like this (just contains an import and a wrapper to interface runtests with test_ttk) end up being a slightly confusing, mostly unneeded layer.
As long as many files are moved and history is broken, why not also clean up this tangle by merging the compat layer into the real test files?
This was implemented in #94070. |
https://bugs.python.org/issue10572