Skip to content
Snippets Groups Projects
Commit fe302d87 authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

don't expect there to be a requirements.txt


Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>
parent 0f0ddd52
No related branches found
No related tags found
No related merge requests found
...@@ -62,9 +62,6 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then ...@@ -62,9 +62,6 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
puts-step "Installing test dependencies…" puts-step "Installing test dependencies…"
/app/.heroku/python/bin/pipenv install --dev --system --deploy 2>&1 | cleanup | indent /app/.heroku/python/bin/pipenv install --dev --system --deploy 2>&1 | cleanup | indent
fi fi
# Pip freeze, for compatibility.
pip freeze > requirements.txt
fi fi
fi fi
else else
......
...@@ -70,4 +70,8 @@ def main(): ...@@ -70,4 +70,8 @@ def main():
if __name__ == '__main__': if __name__ == '__main__':
main() try:
main()
except Exception:
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment