-
-
Notifications
You must be signed in to change notification settings - Fork 270
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 health checks #3109
Closed
Closed
Fix health checks #3109
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SonarQube Quality Gate |
Pylint result on modfied files:
|
Not quite. 😔 Traceback (most recent call last):
File "/usr/share/bottles/bottles/frontend/main.py", line 187, in do_command_line
self.do_activate()
File "/usr/share/bottles/bottles/frontend/main.py", line 230, in do_activate
win = MainWindow(
^^^^^^^^^^^
File "/usr/share/bottles/bottles/frontend/windows/main_window.py", line 121, in __init__
self.__on_start()
File "/usr/share/bottles/bottles/frontend/windows/main_window.py", line 234, in __on_start
self.check_core_deps()
File "/usr/share/bottles/bottles/frontend/windows/main_window.py", line 349, in check_core_deps
if "FLATPAK_ID" not in os.environ and not HealthChecker().has_core_deps():
^^^^^^^^^^^^^^^
File "/usr/share/bottles/bottles/backend/health.py", line 72, in __init__
self.cabextract = self.check_cabextract()
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/share/bottles/bottles/backend/health.py", line 112, in check_cabextract
return self.check_executable("cabextract")
^^^^
NameError: name 'self' is not defined |
Yeah it seems that it really wasn't ready for a merge after all, I also encounter other issues: Traceback (most recent call last):
File "/app/share/bottles/bottles/frontend/views/bottle_preferences.py", line 568, in __show_environment_variables
new_window = EnvVarsDialog(
File "/app/share/bottles/bottles/frontend/windows/envvars.py", line 92, in __init__
self.__populate_vars_list()
File "/app/share/bottles/bottles/frontend/windows/envvars.py", line 140, in __populate_vars_list
_entry = EnvVarEntry(parent=self, env=env)
File "/app/share/bottles/bottles/frontend/windows/envvars.py", line 36, in __init__
self.manager = parent.window.manager
AttributeError: 'EnvVarsDialog' object has no attribute 'window'
It is preferable to just revert it, I'll submit another PR for that. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.