Skip to content

Commit

Permalink
Fix check for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
thorrak committed Apr 10, 2020
1 parent c5b0bde commit 4fc3038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gravity/tilt/tilt_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def check_apt_packages() -> (bool, list):
def check_python_packages() -> (bool, bool, list):
# Returns has_packaging, all_packages_ok, test_results[]
if not has_packaging:
return False, False, []
return has_packaging, False, []

if sys.platform == "darwin":
# The MacOS support uses different packages from the support for Linux
Expand Down Expand Up @@ -90,7 +90,7 @@ def check_python_packages() -> (bool, bool, list):
all_packages_ok = False
test_results.append(result_stub)

return all_packages_ok, test_results
return has_packaging, all_packages_ok, test_results


# The following was used for testing during development
Expand Down

0 comments on commit 4fc3038

Please sign in to comment.