mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 156b07ce2b | |||
| e288ed5a9e | |||
| 181e3395f9 | |||
| 013ba6b1d9 | |||
| bce5bf4869 | |||
| 0fdb62faa9 | |||
| 42507a3f9a | |||
| f89ee6750e | |||
| 122722f89e | |||
| 8cb379f83b | |||
| d3a60b21fe | |||
| 7e80ea8fbe | |||
| c78ffd5ac4 | |||
| a06b536109 | |||
| dd646998d3 | |||
| 484bd44a1e | |||
| 932cd257c9 | |||
| 989351467f | |||
| d68a7c594c | |||
| 97f783ce96 | |||
| 106f2997fa | |||
| 373a656272 | |||
| 0abc749aff |
@@ -1,6 +1,8 @@
|
||||
name: Check Changelog
|
||||
|
||||
on: [pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, edited, synchronize]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
+11
-6
@@ -1,12 +1,14 @@
|
||||
language: ruby
|
||||
dist: trusty
|
||||
dist: bionic
|
||||
sudo: required
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
rvm:
|
||||
- 2.4.4
|
||||
- 2.6.6
|
||||
before_script:
|
||||
- gem install bundler -v 1.16.2
|
||||
- bundle exec hatchet ci:setup
|
||||
|
||||
script:
|
||||
- docker build --pull --tag travis-build-cedar-14 --file $(pwd)/builds/cedar-14.Dockerfile .
|
||||
@@ -22,9 +24,12 @@ jobs:
|
||||
sudo: false
|
||||
script: make check
|
||||
- stage: Hatchet Integration
|
||||
if: branch = master
|
||||
if: env(TRAVIS_PULL_REQUEST_SLUG) = env(TRAVIS_REPO_SLUG)
|
||||
name: Run Hatchet
|
||||
script: "bundle exec rspec"
|
||||
script:
|
||||
- bundle exec hatchet ci:setup
|
||||
- PARALLEL_SPLIT_TEST_PROCESSES=11 bundle exec parallel_split_test spec/hatchet/
|
||||
|
||||
env:
|
||||
matrix:
|
||||
- TESTFOLDER=test/run-deps
|
||||
@@ -33,7 +38,7 @@ env:
|
||||
global:
|
||||
- HATCHET_RETRIES=3
|
||||
- IS_RUNNING_ON_CI=true
|
||||
- HATCHET_APP_LIMIT=5
|
||||
- HATCHET_APP_LIMIT=80
|
||||
- HATCHET_DEPLOY_STRATEGY=git
|
||||
- secure: yjtlPE5FbVxTKnjUy/tZUBgSEf4qADD3QOxtgziuid73S0U/1IEXlMGFULsQzIjtlHKmHeywZqpVVEpthIH4RuT7uoX1Pb7SSM/g0T8fT3VoEFbFK1uYl0oZQbUS4Klxv9tPiumj8if3m6ULEGIz1X0wZcMOC0tMLwVCnwmap0E=
|
||||
- secure: ZeFTHWwnpIKE9nAqs88ocmiQh7bKce84lilGm5J23nf3N6V4wNyLwqlkvsM008WGBCaOg9AUx7ZunasT0ANsR5gLP3eV2UUg7ILdRgV2Gy13eNRFheC4PHdN92RqQ3aKoqlIv2K999xlhVjod0NzhkQQXB6PddfQINbuU7ks6As=
|
||||
|
||||
+25
-2
@@ -2,12 +2,35 @@
|
||||
|
||||
# Master
|
||||
|
||||
|
||||
# 173 (2020-07-21)
|
||||
|
||||
- Python 3.8.5 is now available (CPython)
|
||||
|
||||
# 172 (2020-07-17)
|
||||
|
||||
- Python 3.8.4 is now available (CPython)
|
||||
|
||||
# 171 (2020-07-07)
|
||||
|
||||
- Python 3.6.11 and 3.7.8 are now available (CPython).
|
||||
|
||||
# 170 (2020-05-19)
|
||||
|
||||
- Python 2.7.18, 3.5.9, 3.7.7 and 3.8.3 are now available (CPython).
|
||||
- PyPy 2.7 and 3.6, version 7.3.1 are now available (Note: PyPy support is in beta)
|
||||
- Docs: Fix explanation of runtime.txt generation when using pipenv
|
||||
- Bugfix: Correctly detect Python version when using a `python_version` of `3.8` in `Pipfile.lock`
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
# 169 (2020-04-22)
|
||||
|
||||
- Add a Hatchet test for python 3.8.2
|
||||
- Set Code Owners to @heroku/langauges
|
||||
- Bugfix: Caching on subsequent redeploys
|
||||
- Update tests to support latest version of Python
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
# 168 (2020-04-06)
|
||||
|
||||
- Doc: Update Readme with version numbers
|
||||
|
||||
@@ -4,3 +4,5 @@ gem "rspec"
|
||||
gem "heroku_hatchet"
|
||||
gem "rspec-retry"
|
||||
gem "rake"
|
||||
gem "parallel_split_test"
|
||||
|
||||
|
||||
+17
-10
@@ -1,21 +1,22 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
activesupport (5.2.1)
|
||||
activesupport (6.0.3.1)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 0.7, < 2)
|
||||
minitest (~> 5.1)
|
||||
tzinfo (~> 1.1)
|
||||
concurrent-ruby (1.1.3)
|
||||
zeitwerk (~> 2.2, >= 2.2.2)
|
||||
concurrent-ruby (1.1.6)
|
||||
diff-lcs (1.3)
|
||||
erubis (2.7.0)
|
||||
excon (0.62.0)
|
||||
excon (0.73.0)
|
||||
heroics (0.0.25)
|
||||
erubis (~> 2.0)
|
||||
excon
|
||||
moneta
|
||||
multi_json (>= 1.9.2)
|
||||
heroku_hatchet (4.0.6)
|
||||
heroku_hatchet (5.0.3)
|
||||
excon (~> 0)
|
||||
minitest-retry (~> 0.1.9)
|
||||
platform-api (~> 2)
|
||||
@@ -23,17 +24,21 @@ GEM
|
||||
rrrretry (~> 1)
|
||||
thor (~> 0)
|
||||
threaded (~> 0)
|
||||
i18n (1.1.1)
|
||||
i18n (1.8.2)
|
||||
concurrent-ruby (~> 1.0)
|
||||
minitest (5.11.3)
|
||||
minitest (5.14.1)
|
||||
minitest-retry (0.1.9)
|
||||
minitest (>= 5.0)
|
||||
moneta (1.0.0)
|
||||
multi_json (1.13.1)
|
||||
multi_json (1.14.1)
|
||||
parallel (1.19.1)
|
||||
parallel_split_test (0.7.0)
|
||||
parallel (>= 0.5.13)
|
||||
rspec (>= 3.1.0)
|
||||
platform-api (2.2.0)
|
||||
heroics (~> 0.0.25)
|
||||
moneta (~> 1.0.0)
|
||||
rake (12.3.1)
|
||||
rake (12.3.3)
|
||||
repl_runner (0.0.3)
|
||||
activesupport
|
||||
rrrretry (1.0.0)
|
||||
@@ -55,17 +60,19 @@ GEM
|
||||
thor (0.20.3)
|
||||
thread_safe (0.3.6)
|
||||
threaded (0.0.4)
|
||||
tzinfo (1.2.5)
|
||||
tzinfo (1.2.7)
|
||||
thread_safe (~> 0.1)
|
||||
zeitwerk (2.3.0)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
heroku_hatchet
|
||||
parallel_split_test
|
||||
rake
|
||||
rspec
|
||||
rspec-retry
|
||||
|
||||
BUNDLED WITH
|
||||
1.16.3
|
||||
2.1.4
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
[[source]]
|
||||
url = "https://pypi.python.org/simple"
|
||||
verify_ssl = true
|
||||
name = "pypi"
|
||||
|
||||
[dev-packages]
|
||||
|
||||
[packages]
|
||||
"bob-builder" = "==0.0.13"
|
||||
Generated
-52
@@ -1,52 +0,0 @@
|
||||
{
|
||||
"_meta": {
|
||||
"hash": {
|
||||
"sha256": "36d17c46a8b1b844b3cae475f6f42d6c0a9e59b2a9685cbcdc0985656a7a129f"
|
||||
},
|
||||
"host-environment-markers": {
|
||||
"implementation_name": "cpython",
|
||||
"implementation_version": "3.6.3",
|
||||
"os_name": "posix",
|
||||
"platform_machine": "x86_64",
|
||||
"platform_python_implementation": "CPython",
|
||||
"platform_release": "16.7.0",
|
||||
"platform_system": "Darwin",
|
||||
"platform_version": "Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64",
|
||||
"python_full_version": "3.6.3",
|
||||
"python_version": "3.6",
|
||||
"sys_platform": "darwin"
|
||||
},
|
||||
"pipfile-spec": 6,
|
||||
"requires": {},
|
||||
"sources": [
|
||||
{
|
||||
"name": "pypi",
|
||||
"url": "https://pypi.python.org/simple",
|
||||
"verify_ssl": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"default": {
|
||||
"bob-builder": {
|
||||
"hashes": [
|
||||
"sha256:b4de49a8e436fcaf82236ea43f78413b4a4c92100726e382ab57b6bdfb38fe64",
|
||||
"sha256:288e3e765c4890fe9a63ae52ac6b4a963c13fe508482c70ff701a5ae21b9a673"
|
||||
],
|
||||
"version": "==0.0.13"
|
||||
},
|
||||
"boto": {
|
||||
"hashes": [
|
||||
"sha256:13be844158d1bd80a94c972c806ec8381b9ea72035aa06123c5db6bc6a6f3ead",
|
||||
"sha256:deb8925b734b109679e3de65856018996338758f4b916ff4fe7bb62b6d7000d1"
|
||||
],
|
||||
"version": "==2.48.0"
|
||||
},
|
||||
"docopt": {
|
||||
"hashes": [
|
||||
"sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"
|
||||
],
|
||||
"version": "==0.6.2"
|
||||
}
|
||||
},
|
||||
"develop": {}
|
||||
}
|
||||
@@ -46,7 +46,8 @@ To specify your python version, you also need a `runtime.txt` file - unless you
|
||||
|
||||
Current default Python Runtime: Python 3.6.9
|
||||
|
||||
Alternatively, you can provide a `setup.py` file, or a `Pipfile`. Using `Pipenv` will generate `runtime.txt` based on `python-version` at build time.
|
||||
Alternatively, you can provide a `setup.py` file, or a `Pipfile`.
|
||||
Using `pipenv` will generate `runtime.txt` at build time if one of the field `python_version` or `python_full_version` is specified in the `requires` section of your `Pipfile`.
|
||||
|
||||
Specify a Buildpack Version
|
||||
---------------------------
|
||||
@@ -61,10 +62,10 @@ Specify a Python Runtime
|
||||
|
||||
Supported runtime options include:
|
||||
|
||||
- `python-3.8.2`
|
||||
- `python-3.7.6`
|
||||
- `python-3.6.10`
|
||||
- `python-2.7.17`
|
||||
- `python-3.8.5`
|
||||
- `python-3.7.8`
|
||||
- `python-3.6.11`
|
||||
- `python-2.7.18`
|
||||
|
||||
## Tests
|
||||
|
||||
|
||||
+8
-8
@@ -1,14 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
DEFAULT_PYTHON_VERSION="python-3.6.10"
|
||||
LATEST_38="python-3.8.2"
|
||||
LATEST_37="python-3.7.6"
|
||||
LATEST_36="python-3.6.10"
|
||||
LATEST_35="python-3.5.7"
|
||||
DEFAULT_PYTHON_VERSION="python-3.6.11"
|
||||
LATEST_38="python-3.8.5"
|
||||
LATEST_37="python-3.7.8"
|
||||
LATEST_36="python-3.6.11"
|
||||
LATEST_35="python-3.5.9"
|
||||
LATEST_34="python-3.4.10"
|
||||
LATEST_27="python-2.7.17"
|
||||
PYPY_36="pypy3.6-7.2.0"
|
||||
PYPY_27="pypy2.7-7.2.0"
|
||||
LATEST_27="python-2.7.18"
|
||||
PYPY_36="pypy3.6-7.3.1"
|
||||
PYPY_27="pypy2.7-7.3.1"
|
||||
|
||||
export DEFAULT_PYTHON_VERSION \
|
||||
LATEST_38 \
|
||||
|
||||
@@ -27,6 +27,9 @@ if [[ -f $BUILD_DIR/Pipfile ]]; then
|
||||
if [ "$PYTHON" = 3.7 ]; then
|
||||
echo "$LATEST_37" > "$BUILD_DIR/runtime.txt"
|
||||
fi
|
||||
if [ "$PYTHON" = 3.8 ]; then
|
||||
echo "$LATEST_38" > "$BUILD_DIR/runtime.txt"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM heroku/heroku:18-build.v16
|
||||
FROM heroku/heroku:18-build
|
||||
|
||||
WORKDIR /app
|
||||
ENV WORKSPACE_DIR="/app/builds" \
|
||||
|
||||
Vendored
-28
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/vendor/
|
||||
|
||||
OUT_PREFIX=$1
|
||||
|
||||
# Skip the build for heroku-16.
|
||||
if [[ $S3_PREFIX == "heroku-16" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Use new path, containing autoconf.
|
||||
export PATH="/app/.heroku/python/bin/:$PATH"
|
||||
hash -r
|
||||
|
||||
|
||||
echo "Building libffi…"
|
||||
|
||||
SOURCE_TARBALL='https://github.com/libffi/libffi/archive/v3.1.tar.gz'
|
||||
|
||||
curl -L $SOURCE_TARBALL | tar x
|
||||
|
||||
cd v3.1
|
||||
./configure --prefix=$OUT_PREFIX --disable-static &&
|
||||
make
|
||||
make install
|
||||
|
||||
# Cleanup
|
||||
cd ..
|
||||
Vendored
+3
-3
@@ -3,9 +3,9 @@
|
||||
|
||||
OUT_PREFIX=$1
|
||||
|
||||
# Skip the build for heroku-16.
|
||||
if [[ $S3_PREFIX == "heroku-16" ]]; then
|
||||
exit 0
|
||||
if [[ $S3_PREFIX != "cedar-14" ]]; then
|
||||
echo "libmemcached only needs to be built for cedar-14, since newer stacks include it in the base image"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# fail hard
|
||||
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/pypy2.7
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/pypy3.6
|
||||
Executable
+27
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
OUT_PREFIX=$1
|
||||
BIN_DIR="$(cd "$(dirname "$0")"/../.. || exit; pwd)/bin"
|
||||
export BIN_DIR
|
||||
|
||||
# shellcheck source=bin/utils
|
||||
source "$BIN_DIR/steps/sqlite3"
|
||||
|
||||
sqlite3_version
|
||||
echo "Setting up SQLite3 Headers for $SQLITE3_VERSION"
|
||||
sqlite3_install "$OUT_PREFIX" "$SQLITE3_VERSION" 1
|
||||
|
||||
echo "Building Python…"
|
||||
SOURCE_TARBALL='https://python.org/ftp/python/2.7.18/Python-2.7.18.tgz'
|
||||
curl -L $SOURCE_TARBALL | tar xz
|
||||
mv Python-2.7.18 src
|
||||
cd src
|
||||
|
||||
./configure --prefix=$OUT_PREFIX --enable-unicode=ucs4 --with-ensurepip=no
|
||||
make
|
||||
make install
|
||||
|
||||
# Remove unneeded test directories, similar to the official Docker Python images:
|
||||
# https://github.com/docker-library/python
|
||||
find "${OUT_PREFIX}" \( -type d -a \( -name test -o -name tests \) \) -exec rm -rf '{}' +
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Regular → Executable
+2
-1
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"python": [
|
||||
"heroku/python-getting-started"
|
||||
"heroku/python-getting-started",
|
||||
"sharpstone/python_default"
|
||||
]
|
||||
}
|
||||
|
||||
+3
-1
@@ -1,3 +1,5 @@
|
||||
---
|
||||
- - "./repos/python/python-getting-started"
|
||||
- 443a90c58be6881583cd7ef628e3869e3c30bb98
|
||||
- master
|
||||
- - "./repos/python/python_default"
|
||||
- ca947f69027b2a30be5d26f9a42f25e54f4d7a1a
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
require_relative '../spec_helper'
|
||||
|
||||
describe "Heroku CI" do
|
||||
it "works" do
|
||||
before_deploy = Proc.new do
|
||||
File.open("app.json", "w+") do |f|
|
||||
f.puts <<~EOM
|
||||
{
|
||||
"environments": {
|
||||
"test": {
|
||||
"scripts": {
|
||||
"test": "nosetests"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
EOM
|
||||
end
|
||||
|
||||
run!("echo nose >> requirements.txt")
|
||||
end
|
||||
|
||||
Hatchet::Runner.new("python_default", before_deploy: before_deploy).run_ci do |test_run|
|
||||
expect(test_run.output).to match("Downloading nose")
|
||||
expect(test_run.output).to match("OK")
|
||||
|
||||
test_run.run_again
|
||||
|
||||
expect(test_run.output).to match("installing from cache")
|
||||
expect(test_run.output).to_not match("Downloading nose")
|
||||
end
|
||||
end
|
||||
end
|
||||
+58
-28
@@ -1,42 +1,72 @@
|
||||
require_relative '../spec_helper'
|
||||
|
||||
describe "Default Python Deploy" do
|
||||
it "🐍" do
|
||||
Hatchet::Runner.new('python-getting-started', stack: DEFAULT_STACK).deploy do |app|
|
||||
describe "Python" do
|
||||
describe "cache" do
|
||||
it "functions correctly" do
|
||||
Hatchet::Runner.new("python_default").deploy do |app|
|
||||
expect(app.output).to match(/Installing pip/)
|
||||
|
||||
# What should happen on first deploy
|
||||
expect(app.output).to match(/Installing pip/)
|
||||
expect(app.output).to_not match("Requirements file has been changed, clearing cached dependencies")
|
||||
expect(app.output).to_not match("No change in requirements detected, installing from cache")
|
||||
expect(app.output).to_not match("No such file or directory")
|
||||
expect(app.output).to_not match("cp: cannot create regular file")
|
||||
|
||||
# What should not happen
|
||||
expect(app.output).to_not match("Requirements file has been changed, updating cache")
|
||||
expect(app.output).to_not match("No change in requirements detected, installing from cache")
|
||||
expect(app.output).to_not match("No such file or directory")
|
||||
expect(app.output).to_not match("cp: cannot create regular file")
|
||||
# Redeploy with changed requirements file
|
||||
run!(%Q{echo "" >> requirements.txt})
|
||||
run!(%Q{echo "pygments" >> requirements.txt})
|
||||
run!(%Q{git add . ; git commit --allow-empty -m next})
|
||||
app.push!
|
||||
|
||||
# Redeploy with changed requirements file
|
||||
run!(%Q{echo "" >> requirements.txt})
|
||||
run!(%Q{echo "flask" >> requirements.txt})
|
||||
run!(%Q{git add . ; git commit --allow-empty -m next})
|
||||
app.push!
|
||||
# Check the cache to have cleared
|
||||
expect(app.output).to match("Requirements file has been changed, clearing cached dependencies")
|
||||
expect(app.output).to_not match("No dependencies found, preparing to install")
|
||||
expect(app.output).to_not match("No change in requirements detected, installing from cache")
|
||||
|
||||
# Check for the cache to have cleared
|
||||
expect(app.output).to match("Requirements file has been changed, updating cache")
|
||||
# With no changes on redeploy, the cache should be present
|
||||
run!(%Q{git commit --allow-empty -m next})
|
||||
app.push!
|
||||
|
||||
# What should not happen when the requirements file is changed
|
||||
expect(app.output).to_not match("No dependencies found, preparing to install")
|
||||
expect(app.output).to_not match("No change in requirements detected, installing from cache")
|
||||
expect(app.output).to match("No change in requirements detected, installing from cache")
|
||||
expect(app.output).to_not match("Requirements file has been changed, clearing cached dependencies")
|
||||
expect(app.output).to_not match("No dependencies found, preparing to install")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
run!(%Q{git commit --allow-empty -m next})
|
||||
app.push!
|
||||
describe "python versions" do
|
||||
let(:stack) { ENV["HEROKU_TEST_STACK"] || DEFAULT_STACK }
|
||||
it "works with 3.7.6" do
|
||||
version = "3.7.6"
|
||||
before_deploy = -> { run!(%Q{echo "python-#{version}" >> runtime.txt}) }
|
||||
Hatchet::Runner.new("python_default", before_deploy: before_deploy, stack: stack).deploy do |app|
|
||||
expect(app.run('python -V')).to match(version)
|
||||
end
|
||||
end
|
||||
|
||||
# With no changes on redeploy, the cache should
|
||||
expect(app.output).to match("No change in requirements detected, installing from cache")
|
||||
it "works with 3.8.2" do
|
||||
version = "3.8.2"
|
||||
before_deploy = -> { run!(%Q{echo "python-#{version}" >> runtime.txt}) }
|
||||
Hatchet::Runner.new("python_default", before_deploy: before_deploy, stack: stack).deploy do |app|
|
||||
expect(app.run('python -V')).to match(version)
|
||||
end
|
||||
end
|
||||
|
||||
# With no changes on redeploy, the cache should not
|
||||
expect(app.output).to_not match("Requirements file has been changed, updating cache")
|
||||
expect(app.output).to_not match("No dependencies found, preparing to install")
|
||||
it "fails with a bad version" do
|
||||
version = "3.8.2.lol"
|
||||
before_deploy = -> { run!(%Q{echo "python-#{version}" >> runtime.txt}) }
|
||||
Hatchet::Runner.new("python_default", before_deploy: before_deploy, stack: stack, allow_failure: true).deploy do |app|
|
||||
expect(app.output).to match("not available for this stack")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
expect(app.run('python -V')).to match(/3.7.6/)
|
||||
it "getting started app has no relative paths" do
|
||||
buildpacks = [
|
||||
:default,
|
||||
"https://github.com/sharpstone/force_absolute_paths_buildpack"
|
||||
]
|
||||
Hatchet::Runner.new("python-getting-started", buildpacks: buildpacks).deploy do |app|
|
||||
# Deploy works
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
+1
-6
@@ -1,4 +1,4 @@
|
||||
ENV['HATCHET_BUILDPACK_BASE'] = 'https://github.com/' + ENV['TRAVIS_REPO_SLUG'] + '.git'
|
||||
ENV['HATCHET_BUILDPACK_BASE'] = 'https://github.com/heroku/heroku-buildpack-python.git'
|
||||
|
||||
require 'rspec/core'
|
||||
require 'rspec/retry'
|
||||
@@ -15,11 +15,6 @@ RSpec.configure do |config|
|
||||
end
|
||||
end
|
||||
|
||||
if ENV['TRAVIS']
|
||||
# Don't execute tests against "merge" commits
|
||||
exit 0 if ENV['TRAVIS_PULL_REQUEST'] != 'false' && ENV['TRAVIS_BRANCH'] == 'master'
|
||||
end
|
||||
|
||||
DEFAULT_STACK = 'heroku-18'
|
||||
|
||||
def run!(cmd)
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
python-2.7.17
|
||||
python-2.7.18
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
python-3.5.7
|
||||
python-3.5.9
|
||||
|
||||
Reference in New Issue
Block a user