-
Notifications
You must be signed in to change notification settings - Fork 21
Unit Tests
Mike Plavsky edited this page Jun 27, 2013
·
2 revisions
For running Unit Tests there have to be installed:
After installing IronPython, download Nose, unzip it and run
ipy.exe setup.py install
By some reason it installs everything except tools folder. Copy it onto IronPython/lib/site-packages/nose directory
This is the script to run nose:
from nose import main
if __name__ == '__main__':
main()
Put it onto any accessible place and create cmd file:
ipy "C:\Program Files (x86)\IronPython 2.7\Scripts\nose"