-
-
Notifications
You must be signed in to change notification settings - Fork 327
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
Win32 test speedup - Part 1 #4544
Conversation
test/AddOption/multi-arg.py
Outdated
@@ -36,7 +36,8 @@ | |||
test.write( | |||
'SConstruct', | |||
"""\ | |||
env = Environment() | |||
DefaultEnvironment(tools=[]) | |||
env = Environment(tools=[]) |
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.
why not leave the Environment call out entirely if env is never used? which I'm guessing is the case for this test, of course the diff doesn't show every line
Rebasing after #4545 ought to make this go a lot faster - the last recorded run on this one was 34:46. We still want to know how much better the testsuite tweaks here make things. |
…tion which is not needed for this test
484f2d7
to
0bf264e
Compare
Done. |
Disabling tool initialization in tests where those tools aren't needed.
Contributor Checklist:
CHANGES.txt
(and read theREADME.rst
)