Skip to content

Commit

Permalink
test8
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh0107 committed Jan 6, 2024
1 parent 14a6dc7 commit d068a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_dependencies():

for dependency in required_dependencies:
try:
subprocess.run(['pip', 'show', dependency], check=True)
subprocess.run(['pip', 'show', dependency], check=True, capture_output=True, text=True)
assert True
except subprocess.CalledProcessError:
assert False, f"Dependency import failed: {dependency}"
Expand Down

0 comments on commit d068a09

Please sign in to comment.