-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run connected store tests in separate job with fresh docker-compose #3356
Conversation
- script: docker-compose -p healthcare -f docker-compose.yml -f docker-compose.features.yml rm -s -f | ||
displayName: 'Stop docker-compose' | ||
workingDirectory: 'docker' | ||
condition: always() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: leave extra space at the end
- script: docker-compose -p healthcare -f docker-compose.yml rm -s -f | ||
displayName: 'Stop docker-compose' | ||
workingDirectory: 'docker' | ||
condition: always() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: leave extra space at the end
testResultsFiles: '*.trx' | ||
searchFolder: '$(Agent.TempDirectory)/TestResults' | ||
testRunTitle: 'E2E Connected Store Tests' | ||
buildConfiguration: '$(buildConfiguration)' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: leave extra space at the end
testResultsFiles: '*.trx' | ||
searchFolder: '$(Agent.TempDirectory)/TestResults' | ||
testRunTitle: 'Partitioned Connected Store E2E Tests' | ||
buildConfiguration: '$(buildConfiguration)' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: leave extra space at the end
Description
Today, we run all e2e tests for both connected store and internal store within same docker-compose run and this sometimes causes space issues. Instead, we will run connected store tests in separate job with fresh docker-compose.
Related issues
Unblocks [AB#105723].