Skip to content

Commit

Permalink
make travis work again, still test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Feb 3, 2017
1 parent 4e58bbf commit 4bc9e17
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,6 +3,7 @@ build
develop-eggs
dist
lib
local
include
man
parts
Expand Down
17 changes: 13 additions & 4 deletions .travis.yml
@@ -1,10 +1,19 @@
language: python
sudo: false
cache:
directories:
- eggs
- downloads
python:
- 2.7
- 2.7
matrix:
fast_finish: true
install:
- python bootstrap.py
- bin/buildout
- python bootstrap-buildout.py
- bin/buildout -N buildout:download-cache=downloads annotate
- bin/buildout -N buildout:download-cache=downloads
script:
- bin/test -v1
- bin/test -v
notifications:
email: false

File renamed without changes.
5 changes: 4 additions & 1 deletion buildout.cfg
Expand Up @@ -7,5 +7,8 @@ develop = .
[test]
recipe = zc.recipe.testrunner
eggs =
five.customerize
five.customerize[test]
defaults = ['-c', '--module', 'five.customerize']

[versions]
Zope2 = >=4.0a2
12 changes: 8 additions & 4 deletions setup.py
Expand Up @@ -42,16 +42,20 @@
'zope.interface',
'zope.lifecycleevent',
'zope.pagetemplate',
'zope.publisher',
'zope.schema',
'zope.site',
'zope.testing',
'zope.traversing',
'zope.viewlet',
'transaction',
'Acquisition',
'Zope2',
],
extras_require={
'test': [
'zope.publisher',
'zope.site',
'zope.testing',
'transaction',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand Down

0 comments on commit 4bc9e17

Please sign in to comment.