-
Notifications
You must be signed in to change notification settings - Fork 36
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
Ignored simple tests #1331
base: master
Are you sure you want to change the base?
Ignored simple tests #1331
Conversation
CONFIG_FILE_PATH = '/tmp/ignored_simple_tests.conf' | ||
|
||
# Read additional ignored messages from the config file | ||
if os.path.isfile(CONFIG_FILE_PATH): | ||
with open(CONFIG_FILE_PATH, 'r') as config_file: | ||
extra_ignored_tests = [line.strip() for line in config_file if line.strip()] | ||
# Extend the ignored_simple_tests list | ||
ignored_simple_tests.extend(extra_ignored_tests) |
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 solution is not inline with what we are doing elsewhere and also it will be taken by all the tests in parallel because the file is available to all.
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.
You're right, it didn't occur to me that it actually behaves that way. I've edited the code and it should be fine now. I've tested everything.
38d6be1
to
4fe479b
Compare
/test-os-variants |
/test-tmt |
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.
Can you revert the merged PR with the adjust pre-install test as part of this PR so that we can test that it works :)
4fe479b
to
53fd0d9
Compare
53fd0d9
to
57823ca
Compare
/test-tmt |
/test-os-variants |
No description provided.