mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
a0275888a2
* freeze pip version, upon installation Signed-off-by: Kenneth Reitz <me@kennethreitz.org> * use PIP_UPDATE environment variable Signed-off-by: Kenneth Reitz <me@kennethreitz.org> * disable shell checking (for now) Signed-off-by: Kenneth Reitz <me@kennethreitz.org> * --disable-pip-version-check Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
24 lines
512 B
YAML
24 lines
512 B
YAML
language: bash
|
|
dist: trusty
|
|
jobs:
|
|
include:
|
|
# - stage: "Bash linting (shellcheck)"
|
|
# sudo: false
|
|
# addons:
|
|
# apt:
|
|
# sources:
|
|
# - debian-sid # Grab shellcheck from the Debian repo (o_O)
|
|
# packages:
|
|
# - shellcheck
|
|
# script: make check
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=heroku-16
|
|
script: ./tests.sh
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=cedar-14
|
|
script: ./tests.sh
|