Skip to content

Commit

Permalink
- add a Travis CI configuration, waiting for activation
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Jun 11, 2018
1 parent 0525f9a commit 02f88ce
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: python
sudo: false
python:
- 2.7
- 3.4
- 3.5
- 3.6
install:
- pip install -U setuptools==33.1.1
- pip install zc.buildout
- pip install -U coverage coveralls
- pip install -U six==$(curl $(awk '$1 == "extends" {print $3}' buildout.cfg) 2>/dev/null | awk '$1 == "six" {print $3}')
- buildout bootstrap
- buildout
script:
- coverage run bin/test -v1
after_success:
- coveralls
notifications:
email: false
cache:
pip: true
directories:
- eggs/
3 changes: 1 addition & 2 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[buildout]
extends =
http://zopefoundation.github.io/Zope/releases/master/versions-prod.cfg
extends = https://zopefoundation.github.io/Zope/releases/master/versions-prod.cfg
develop = .
parts =
test
Expand Down

0 comments on commit 02f88ce

Please sign in to comment.