Files
heroku-buildpack-python/test/run-focus
T
2020-03-24 13:43:18 -04:00

22 lines
510 B
Bash
Executable File

#!/usr/bin/env bash
# Default Python Versions
# shellcheck source=bin/default_pythons
source "bin/default_pythons"
testDeployingTwiceUsesTheCache() {
compile "pythonDefault"
assertNotCaptured "Installing collected packages:"
assertCapturedSuccess
compile "pythonDefault"
assertCaptured "Requirement already satisfied:"
assertNotCaptured "Installing collected packages:"
assertCapturedSuccess
}
pushd $(dirname 0) >/dev/null
popd >/dev/null
source $(pwd)/test/utils
source $(pwd)/test/shunit2