python - How do I run a twisted trial in Windows? -
i'm new python, twisted, , trial... , windows users setup process isn't clear. right now, have python 2.7 installed, along twisted. python gui, can run reactor, i'm convinced things set ok. can't figure out how run trial command line run unit tests. don't see executable anywhere it.
this post gives me hint patch needs installed in twisted setup.py
... although don't know file located. comments mention should use twisted cmd shell, again, don't know at.
any pointers appreciated.
there's nothing terribly special running trial on windows. run python script:
c:\python27\python.exe c:\python27\scripts\trial.py [additional arguments]
or if have .py associated python interpreter already:
c:\python27\scripts\trial.py [additional arguments]
or if have python scripts folder in %path% already:
trial.py [additional arguments]
or if have folder on %path% , '.py' in %pathext% already:
trial [additional arguments]
Comments
Post a Comment