2016-09-14 63 views
1

私はJenkinsを使用してRobotFrameworkスクリプトを実行していましたが、誤って現在のワークスペースを抹消するまで、私はそれを復元する方法がわからない、今、私は次のようなエラーになっている:私はロボットのプラグインがインストールされているhudson.AbortException:ファイルマスクが設定されたパスにファイルが見つかりません:output.xml

Robot results publisher started... 
-Parsing output xml: 
Failed! 
hudson.AbortException: No files found in path C:\Users\EEMIZHA\.jenkins\jobs\3PI RF2\workspace with configured filemask: output.xml 
    at hudson.plugins.robot.RobotParser$RobotParserCallable.invoke(RobotParser.java:77) 
    at hudson.plugins.robot.RobotParser$RobotParserCallable.invoke(RobotParser.java:54) 
    at hudson.FilePath.act(FilePath.java:990) 
    at hudson.FilePath.act(FilePath.java:968) 
    at hudson.plugins.robot.RobotParser.parse(RobotParser.java:49) 
    at hudson.plugins.robot.RobotPublisher.parse(RobotPublisher.java:217) 
    at hudson.plugins.robot.RobotPublisher.perform(RobotPublisher.java:239) 
    at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:78) 
    at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:782) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:723) 
    at hudson.model.Build$BuildExecution.post2(Build.java:185) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:668) 
    at hudson.model.Run.execute(Run.java:1763) 
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) 
    at hudson.model.ResourceController.execute(ResourceController.java:98) 
    at hudson.model.Executor.run(Executor.java:410) 
Build step 'Publish Robot Framework test results' changed build result to FAILURE 
Finished: FAILURE 

を、私は「ロボットFrameworkのテスト結果を公開する」ポストビルドアクションを有効にした、と私は非常にシンプルなWindowsバッチコマンドを次のように実行しています。

cd C:\Users\EEMIZHA\Documents\3PIManager\Testing\ 
pybot jenkinsConnectionTest.robot 

アイデアはありますか?

答えて

1

Jenkinsのカスタムワークスペースを\path\to\test([高度なプロジェクトオプション/詳細...])に設定して修正しました。 robot Frameworkのポストビルドアクションで-d \path\to\test\output-folderパラメータでpybotコマンドを実行し、output-folderを「ロボット出力のディレクトリ」に設定します。

関連する問題