-
Notifications
You must be signed in to change notification settings - Fork 450
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
Fix Windows GUI tests #7141
Fix Windows GUI tests #7141
Conversation
c9e178d
to
3504723
Compare
@@ -14,7 +14,7 @@ on: | |||
required: false | |||
|
|||
enable-profiling: | |||
default: true | |||
default: false |
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.
I suppose that the problem is solved, and that is why profiling for GUI tests has been disabled.
defaults: | ||
run: | ||
shell: bash |
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.
This is the fix for Windows GUI tests.
Without it, the wrong env had been used and this led to the execution of the whole test suite.
@@ -8,7 +8,7 @@ def pytest_addoption(parser): | |||
|
|||
def pytest_collection_modifyitems(config, items): | |||
for item in items: | |||
item.add_marker(pytest.mark.timeout(30)) | |||
item.add_marker(pytest.mark.timeout(60)) |
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.
This is the fix that should solve the timeout problem.
This PR fixes #7132
Refs: