あなたはシェルから基本的なリダイレクトを使用する場合は、あなたの質問に基づいて
nosetests &> output.txt
を行うことができますが、あなたが、むしろのような何かをしたいようです:
$ls
test_nose.py test_nose.pyc
$cat test_nose.py
import sys
import os
import time
def setUp():
pass
def test_1():
time.sleep(5)
with open('test_pid_' + str(os.getpid()), 'w') as f:
f.write(str(os.getpid()) + '\n')
def test_2():
time.sleep(5)
with open('test_pid_' + str(os.getpid()), 'w') as f:
f.write(str(os.getpid()) + '\n')
def test_3():
time.sleep(5)
with open('test_pid_' + str(os.getpid()), 'w') as f:
f.write(str(os.getpid()) + '\n')
def test_4():
time.sleep(5)
with open('test_pid_' + str(os.getpid()), 'w') as f:
f.write(str(os.getpid()) + '\n')
def tearDown():
pass
$ nosetests --processes 4 --with-xunit --xunit-file=test_output.xml
....
----------------------------------------------------------------------
Ran 4 tests in 5.223s
OK
$ ls
test_nose.py test_output.xml test_pid_55247 test_pid_55249
test_nose.pyc test_pid_55246 test_pid_55248
$ cat test_pid*
55246
55247
55248
55249
$ xmllint -format test_output.xml
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="nosetests" tests="0" errors="0" failures="0" skip="0"/>
あなたは:)
しかし
$nosetests --processes 4 &> output.txt
そして
$nosetests --with-xunit --xunit-file=test_output.xml
Doのを言いました
参考文献:
Redirect stderr and stdout in a Bash script
$man xmllint
$nosetests -h
どうもありがとう、それは完璧に動作します! – dgrandes