[Scons-dev] SCons option tests failing in Python3

2017-02-28 Thread William Blevins
Krew, I figured out why test/options are failing under Python3, but I'm not sure how to fix it right off so I'll post it here in case someone else has worked with it lately. SCons.compat is renaming cProfile to profile which in turn is causing test/option/profile.py to execute inside other tests.

Re: [Scons-dev] SCons option tests failing in Python3

2017-02-28 Thread William Blevins
I suppose the quick fix would be to rename the test file... unless someone has a better way? On Wed, Mar 1, 2017 at 12:02 AM, William Blevins wrote: > Krew, > > I figured out why test/options are failing under Python3, but I'm not sure > how to fix it right off so I'll

Re: [Scons-dev] SCons option tests failing in Python3

2017-02-28 Thread William Blevins
Alright. I figured I would share some of the legwork. If I move the test file, it seems to be getting pstats rather than cProfile which is odd. On Wed, Mar 1, 2017 at 12:53 AM, Bill Deegan wrote: > There seems to be some mess around Python3 importing the wrong module

Re: [Scons-dev] SCons option tests failing in Python3

2017-02-28 Thread Bill Deegan
There seems to be some mess around Python3 importing the wrong module with the same name. It's breaking a bunch of things. I think the "right" fix is to fix the way it's searching for the tools it's loading. I've punted on that for now, but will revisit tomorrow as it's looking kinda