Skip to content

Commit c000679

Browse files
committed
Use Pipfile on setup
Travis CI environment apparently now has pipenv installed (by default) in the Python environments. The CI environment (linux container) doesn't match local development environment (macOS). Ignore Pipfile.lock and install dependencies from Pipfile to fix CI setup errors.
1 parent f1c19fc commit c000679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/installdeps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export PIP_REQUIRE_VIRTUALENV=true
1616
# Prefer use of a Pipfile and pipenv for dependency management
1717
if [[ -f "Pipfile" ]] && [[ -n "$(pipenv --version 2>/dev/null)" ]]; then
1818
echo "==> Installing Pipfile dependencies"
19-
pipenv install --dev
19+
pipenv install --dev --skip-lock
2020

2121
elif [[ -f "requirements.txt" ]]; then
2222
echo "==> Installing requirements.txt dependencies"

0 commit comments

Comments
 (0)