-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Fix test skip mechanism and update leeway to v0.10.8 #21190
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
Conversation
The ifEnvVarNotSet function was only checking for undefined, but in CI environments variables can be set to empty strings. This caused tests to run when they should have been skipped, resulting in 401 errors. Now checks for both undefined and empty string values. Co-authored-by: Ona <no-reply@ona.com>
…pty-env-vars-gha.22
1072dc1 to
efae4dd
Compare
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Co-authored-by: Ona <no-reply@ona.com>
…pty-env-vars-gha.25 Co-authored-by: Ona <no-reply@ona.com>
Co-authored-by: Ona <no-reply@ona.com>
Co-authored-by: Ona <no-reply@ona.com>
…pty-env-vars-gha.29 Co-authored-by: Ona <no-reply@ona.com>
|
|
Co-authored-by: Ona <no-reply@ona.com>
|
|
Description
This PR includes multiple fixes and updates:
Changes
Test Skip Mechanism Fix
The
ifEnvVarNotSetutility was failing in CI because it only checked forundefined, but CI environments can set variables to empty strings. This caused tests to run without valid tokens, resulting in 401 errors.Solution: Updated to check for both
undefinedand empty strings:Leeway Updates
LEEWAY_CACHE_UPLOAD_IMMEDIATE=trueto enable new upload mechanismInstaller Fix
Commits
Testing