Attempt #2
This commit is contained in:
parent
e7284d4434
commit
35ee6789a7
1 changed files with 11 additions and 10 deletions
|
|
@ -41,15 +41,16 @@ variables:
|
||||||
stages:
|
stages:
|
||||||
# PR's
|
# PR's
|
||||||
- ${{ if or(eq(variables['Build.Reason'], 'PullRequest'), eq(1,1)) }}: # TODO: Temporarily changed to always be true, change back
|
- ${{ if or(eq(variables['Build.Reason'], 'PullRequest'), eq(1,1)) }}: # TODO: Temporarily changed to always be true, change back
|
||||||
- stage: TestPr
|
# TODO: Temporarily commented out
|
||||||
displayName: Run Tests For PullRequest
|
# - stage: TestPr
|
||||||
jobs:
|
# displayName: Run Tests For PullRequest
|
||||||
- template: templates/digital/vue-jest-run-unit-tests.yml@AzureDevOps
|
# jobs:
|
||||||
parameters:
|
# - template: templates/digital/vue-jest-run-unit-tests.yml@AzureDevOps
|
||||||
nodeContainer: node
|
# parameters:
|
||||||
npmLocation: $(Build.SourcesDirectory)
|
# nodeContainer: node
|
||||||
testResultsFile: junit.xml
|
# npmLocation: $(Build.SourcesDirectory)
|
||||||
summaryFileLocation: $(Build.SourcesDirectory)/coverage/cobertura-coverage.xml
|
# testResultsFile: junit.xml
|
||||||
|
# summaryFileLocation: $(Build.SourcesDirectory)/coverage/cobertura-coverage.xml
|
||||||
- job: playwright_tests
|
- job: playwright_tests
|
||||||
continueOnError: true
|
continueOnError: true
|
||||||
strategy:
|
strategy:
|
||||||
|
|
@ -148,7 +149,7 @@ stages:
|
||||||
env:
|
env:
|
||||||
PLAYWRIGHT_JUNIT_OUTPUT_FILE: "test-results/results.xml"
|
PLAYWRIGHT_JUNIT_OUTPUT_FILE: "test-results/results.xml"
|
||||||
- script: |
|
- script: |
|
||||||
$(System.DefaultWorkingDirectory)/jira_writeback.sh
|
$(System.DefaultWorkingDirectory)/devops/scripts/jira_writeback.sh
|
||||||
add_comment() $(Build.SourceBranchName) "AUTOMATED TEST RUN: $(date)" $(System.DefaultWorkingDirectory)/ortoni-report/index.html
|
add_comment() $(Build.SourceBranchName) "AUTOMATED TEST RUN: $(date)" $(System.DefaultWorkingDirectory)/ortoni-report/index.html
|
||||||
displayName: publish_results_to_jira
|
displayName: publish_results_to_jira
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue