0

これらは Linux (ubuntu) のコマンド ラインで実行されますが、hudson 経由で実行しようとすると、最初のもの (最初のもの) のみがコンソール出力に表示されます。

コメントから:

  1. nodestests -s --with-coverage --cover-package prus find . -name "*test.py"
  2. pylint --rcfile scripts/pylintrc -f parseable prus > pylint.txt echo "pylint complete"
  3. sloccount --wide --details prus > sloccount.sc
4

1 に答える 1

1

2 からの出力を pylint.txt にパイプし、3 を sloccount.sc にパイプしているようです。ファイルにデータを入力し、出力を Hudson に送るには、stdout とファイルの両方にパイプする必要があります。tee.exe を見てください。

于 2011-03-14T00:52:54.710 に答える