-
Notifications
You must be signed in to change notification settings - Fork 351
[lldb] remove unittest2 from tests #11084
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
[lldb] remove unittest2 from tests #11084
Conversation
|
I have not tested this at desk yet, I want to make sure this does not break any tests on any platforms. cc @felipepiovezan since you removed the |
|
@swift-ci please test |
|
@swift-ci please test windows |
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'm surprised we never detected this before!
|
@swift-ci please clean test Windows platform |
|
@swift-ci please test windows |
1 similar comment
|
@swift-ci please test windows |
|
@swift-ci please test |
From unittest2's Readme: unittest2 is a backport of the new features added to the unittest testing framework in Python 2.7 and onwards. It is tested to run on Python 2.6, 2.7, 3.2, 3.3, 3.4 and pypy.
Since, we use Python
3.9.10to test LLDB, there is no need forunittest2anymore.This patch is a follow up to d26912d, which removes the use of
unittest2in all of LLDB testing.