mirror of
https://github.com/containers/podman.git
synced 2025-06-26 21:07:02 +08:00
CI: attempt to fix flake in login test
Fixes: #5212 ...or at least I hope it does. The symptom seems to be that INTEGRATION_ROOT is not being defined in some code flows. This PR blindly implements a suggestion from Miloslav, setting INTEGRATION_ROOT in one more place. We won't actually know for a long time if this works or not, because the test failure is a flake. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -152,6 +152,8 @@ var _ = SynchronizedBeforeSuite(func() []byte {
|
||||
|
||||
return []byte(path)
|
||||
}, func(data []byte) {
|
||||
cwd, _ := os.Getwd()
|
||||
INTEGRATION_ROOT = filepath.Join(cwd, "../../")
|
||||
LockTmpDir = string(data)
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user