Skip to content

Commit a165486

Browse files
authored
Merge pull request #882 from heroku/confirm-binary-url
Staging binary controller env var
2 parents 23adcc4 + d7327b8 commit a165486

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Add Tests
77
- Test for Pysqlite
88
- Bug fix: pipenv no longer installs twice on CI
9-
9+
- Add support for staging binary testing
1010
--------------------------------------------------------------------------------
1111

1212
# 157 (2019-09-18)

bin/compile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ export BUILD_DIR CACHE_DIR ENV_DIR
4242
VENDOR_URL="https://lang-python.s3.amazonaws.com/$STACK"
4343
if [[ -n ${BUILDPACK_VENDOR_URL:-} ]]; then
4444
VENDOR_URL="$BUILDPACK_VENDOR_URL"
45+
elif [[ -n ${USE_STAGING_BINARIES} ]]; then
46+
VENDOR_URL="$USE_STAGING_BINARIES/$STACK"
4547
fi
4648
export VENDOR_URL
4749

test/run-versions

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
# shellcheck source=bin/default_pythons
55
source "bin/default_pythons"
66

7-
assertCaptured "Installing SQLite3"
8-
97
testPythonDefault() {
108
updateVersion "pythonDefault" $DEFAULT_PYTHON_VERSION
119
compile "pythonDefault"

0 commit comments

Comments
 (0)