-
Notifications
You must be signed in to change notification settings - Fork 15
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
Use try/except to catch error #917
base: main
Are you sure you want to change the base?
Changes from all commits
dbf8b03
adb454c
2e98568
bf06b6d
e2746e2
4f68855
3b654d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,3 +1,4 @@ | ||||||||||||||||||||||||
import json | ||||||||||||||||||||||||
import subprocess | ||||||||||||||||||||||||
from pathlib import Path | ||||||||||||||||||||||||
from shutil import which | ||||||||||||||||||||||||
|
@@ -44,18 +45,45 @@ def get_qe_env(): | |||||||||||||||||||||||
|
||||||||||||||||||||||||
|
||||||||||||||||||||||||
def qe_installed(): | ||||||||||||||||||||||||
import json | ||||||||||||||||||||||||
"""Check if Quantum Espresso (QE) is installed in the specified conda environment. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
env_exist = get_qe_env().exists() | ||||||||||||||||||||||||
proc = subprocess.run( | ||||||||||||||||||||||||
["conda", "list", "-n", f"{get_qe_env().name}", "--json", "--full-name", "qe"], | ||||||||||||||||||||||||
check=True, | ||||||||||||||||||||||||
capture_output=True, | ||||||||||||||||||||||||
) | ||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||
bool: True if the environment exists and QE is installed; False otherwise. | ||||||||||||||||||||||||
""" | ||||||||||||||||||||||||
try: | ||||||||||||||||||||||||
# Verify if the specified conda environment exists | ||||||||||||||||||||||||
env_exist = get_qe_env().exists() | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
if not env_exist: | ||||||||||||||||||||||||
return False | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
# Run the conda list command to check for the QE package | ||||||||||||||||||||||||
proc = subprocess.run( | ||||||||||||||||||||||||
[ | ||||||||||||||||||||||||
"conda", | ||||||||||||||||||||||||
"list", | ||||||||||||||||||||||||
"-n", | ||||||||||||||||||||||||
f"{get_qe_env().name}", | ||||||||||||||||||||||||
"--json", | ||||||||||||||||||||||||
"--full-name", | ||||||||||||||||||||||||
"qe", | ||||||||||||||||||||||||
], | ||||||||||||||||||||||||
check=True, | ||||||||||||||||||||||||
capture_output=True, | ||||||||||||||||||||||||
) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
info = json.loads(str(proc.stdout.decode()))[0] | ||||||||||||||||||||||||
# Load and interpret the JSON output | ||||||||||||||||||||||||
info = json.loads(proc.stdout.decode()) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
return env_exist and "qe" == info["name"] | ||||||||||||||||||||||||
# Check if 'qe' is listed in the environment | ||||||||||||||||||||||||
for package in info: | ||||||||||||||||||||||||
if package.get("name") == "qe": | ||||||||||||||||||||||||
return True | ||||||||||||||||||||||||
return False # noqa: TRY300 | ||||||||||||||||||||||||
except Exception as error: | ||||||||||||||||||||||||
raise RuntimeError( | ||||||||||||||||||||||||
"Failed to check if Quantum Espresso is installed." | ||||||||||||||||||||||||
) from error | ||||||||||||||||||||||||
Comment on lines
+82
to
+86
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Also for the catched exception, I think there are two types of exceptions we know which are There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For TRY300, you can move it to else block, https://docs.astral.sh/ruff/rules/try-consider-else/ |
||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
||||||||||||||||||||||||
def install_qe(): | ||||||||||||||||||||||||
|
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.
Because we check if the conda env exists here, I didn't add the code to run the code cmd using the subprocess.