-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
misc: suppress more GPU related warnings #30861
base: develop
Are you sure you want to change the base?
Conversation
|
|
This comment was marked as resolved.
This comment was marked as resolved.
Done |
Looks like I need to update the changelog too. I will do that when I get back to my computer. |
@MikeMcC399 I am kindof at a loss as to what I am doing wrong in the changelog to pass the Semantic Pull Request Test. |
The linting is quite demanding! I made a suggestion. See if it works! |
That did it. |
It looks like you have used your company e-mail in addition to the GitHub one, so CLA is asking you to sign for the other address as well. If you don't want to have your company e-mail exposed, you'll probably want to replace that commit. |
Closes Mesa/GLX related warnings shown when running Cypress cypress-io#29521 The primary Cypress process can emit benign warnings related to Mesa/GLX when running in certain Linux environments or containers. These warnings are related to graphics drivers and X11 display settings, but are not necessary for Cypress to execute correctly. This PR suppresses these warnings from stdout, similar to other benign Electron warnings: - `error: XDG_RUNTIME_DIR is invalid or not set in the environment.` - `MESA: error: ZINK: failed to choose pdev` - `glx: failed to create drisw screen` 1. Execute Cypress tests in run mode on a Linux machine or container with minimal graphics drivers installed 2. Execute Cypress tests in run mode in a Docker container using a basic Linux image (e.g. ubuntu:latest) 3. Verify the suppressed warnings no longer appear in the terminal output Users will no longer see benign graphics-related warnings in their terminal output when running Cypress in Linux environments with minimal graphics support. This reduces noise in the terminal output while not affecting any actual test functionality. - [x] Have tests been added/updated? - [NA] Has a PR for user-facing changes been opened in cypress-documentation? - [NA] Have API changes been updated in the type definitions? fix linting change word for CI Update cli/CHANGELOG.md Going with the suggesting. Co-authored-by: Mike McCready <[email protected]> fix linting update readme with another fixed issue
75eb301
to
c1d177d
Compare
I squashed and force pushed. 😢 Hate having to do that but. |
Closes Mesa/GLX related warnings shown when running Cypress #29521
Additional details
The primary Cypress process can emit benign warnings related to Mesa/GLX when running in certain Linux environments or containers. These warnings are related to graphics drivers and X11 display settings, but are not necessary for Cypress to execute correctly. This PR suppresses these warnings from stdout, similar to other benign Electron warnings:
error: XDG_RUNTIME_DIR is invalid or not set in the environment.
MESA: error: ZINK: failed to choose pdev
glx: failed to create drisw screen
Steps to test
How has the user experience changed?
Users will no longer see benign graphics-related warnings in their terminal output when running Cypress in Linux environments with minimal graphics support. This reduces noise in the terminal output while not affecting any actual test functionality.
PR Tasks
Additional details
These errors are showing up when running under ubuntu 24.04
Steps to test
How has the user experience changed?
PR Tasks
cypress-documentation
?type definitions
?