mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
2d290e94e9
- Add stage to Travis CI config and update tests.sh script to recognize it - Update tests to assert there is no Python 2 on Heroku-18 - Update nltk fixture to use Python 3.6 so we can test it on all stacks Closes gh-730
26 lines
570 B
YAML
26 lines
570 B
YAML
language: bash
|
|
dist: trusty
|
|
jobs:
|
|
include:
|
|
- stage: "Bash linting (shellcheck)"
|
|
sudo: false
|
|
before_install:
|
|
- wget -c https://goo.gl/ZzKHFv -O - | tar -xvJ -C /tmp/
|
|
- PATH="/tmp/shellcheck-latest:$PATH"
|
|
script: make check
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=heroku-18
|
|
script: ./tests.sh
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=heroku-16
|
|
script: ./tests.sh
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=cedar-14
|
|
script: ./tests.sh
|