-
Notifications
You must be signed in to change notification settings - Fork 23
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
ci: split docker install integration tests #496
ci: split docker install integration tests #496
Conversation
80c9dfb
to
b367b8a
Compare
b367b8a
to
3a3d393
Compare
__tests__/docker/install.test.itg.ts
Outdated
// prettier-ignore | ||
test.each([ | ||
{type: 'image', tag: '27.3.1'} as InstallSourceImage, | ||
{type: 'image', tag: 'master'} as InstallSourceImage, | ||
{type: 'image', tag: 'latest'} as InstallSourceImage, | ||
{type: 'archive', version: 'v26.1.4', channel: 'stable'} as InstallSourceArchive, | ||
{type: 'archive', version: 'latest', channel: 'stable'} as InstallSourceArchive, | ||
])( | ||
'install docker %s', async (source) => { |
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.
It would still be nice to run these tests outside of CI for development purposes.
WDYT about keeping them, but only use them if the DOCKER_INSTALL_*
envs are unset?
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.
Yes I think that's fine, let me change this
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.
Done
Signed-off-by: CrazyMax <[email protected]>
3a3d393
to
9e42346
Compare
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.
LGTM
No description provided.