nosetests
出力を取得するのに苦労していますxml
。
インストールnosexml
してから、入力してPYTHONPATH
入力しましたln -s /usr/lib/python2.7/xml/etree/ elementtree
。
nosetests -plugins
これで、を含むプラグインのリストを入力して取得できますxunit
。
私が走ったら
nosetests --with-xunit test.py
次に、テスト結果を含むファイル「nosetests.xml」を取得します。だから私は次のように鼻を動かそうとします、
nosetests --with-xunit --processes=1 --process-timeout=8000 test.py
テストが実行されないことを示すファイル「nosetests.xml」を取得します。
<?xml version="1.0" encoding="UTF-8"?><testsuite name="nosetests" tests="0" errors="0" failures="0" skip="0"></testsuite>
--with-xunit
他のオプションと一緒に使用できますか?