Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
6b5ec50a
Commit
6b5ec50a
authored
Mar 10, 2017
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new travis matrix
parent
63810f29
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
.travis.yml
.travis.yml
+5
-2
tests.sh
tests.sh
+16
-0
No files found.
.travis.yml
View file @
6b5ec50a
...
...
@@ -2,5 +2,8 @@ language: bash
sudo
:
required
services
:
-
docker
install
:
docker pull heroku/cedar:14
script
:
make test
# install: docker pull heroku/cedar:14
script
:
./tests.sh
env
:
-
STACK=heroku-16
-
STACK=cedar-14
\ No newline at end of file
tests.sh
0 → 100755
View file @
6b5ec50a
#!/usr/bin/env sh
if
[[
!
"
$STACK
"
]]
;
then
echo
'$STACK must be set! (heroku-16 | cedar-14)'
exit
1
fi
if
[[
"
$STACK
"
==
"cedar-14"
]]
;
then
make test-cedar-14
exit
$?
fi
if
[[
"
$STACK
"
==
"heroku-16"
]]
;
then
make test-heroku-16
exit
$?
fi
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment