Skip to content

Commit

Permalink
add a log statement to aid in diagnosing failing functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
ITProKyle committed Sep 13, 2024
1 parent e95a5c7 commit 256b87e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions runway/dependency_managers/_pipenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def export(self, *, dev: bool = False, output: StrPath) -> Path:
suppress_output=True,
)
except subprocess.CalledProcessError as exc:
LOGGER.error("failed to export pipenv requirements")
raise PipenvExportFailedError from exc
output.parent.mkdir(exist_ok=True, parents=True) # ensure directory exists
output.write_text(str(result), encoding=locale.getpreferredencoding(do_setlocale=False))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
mysqlclient = "==2.1.1"

[[source]]
name = "pypi"
name = "pip_conf_index_global"
url = "https://pypi.org/simple"
verify_ssl = true
verify_ssl = false

0 comments on commit 256b87e

Please sign in to comment.