Skip to content

Commit

Permalink
Fixes issue with where NLU results are downloaded (microsoft#345)
Browse files Browse the repository at this point in the history
When using `DownloadPipelineArtifact` as opposed to `download`, the artifacts are flattened into $(Pipeline.Workspace) (rather than being placed into a sub-folder named after the artifact). This updates the baseline path to point to the correct location for downloaded NLU results.
  • Loading branch information
rozele authored Nov 18, 2020
1 parent f0a119a commit 3e4b0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .azdo/templates/jobs/nlu/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
--expected models/tests.json
--actual $(Build.ArtifactStagingDirectory)/results.json
--test-settings models/compare.yml
--baseline $(Pipeline.Workspace)/nlu/statistics.json
--baseline $(Pipeline.Workspace)/statistics.json
--output-folder $(Build.ArtifactStagingDirectory)

- task: DotNetCoreCLI@2
Expand Down

0 comments on commit 3e4b0cc

Please sign in to comment.