Skip to content

Commit

Permalink
This makes the tests run for Plone 4.0 too.
Browse files Browse the repository at this point in the history
The tests currently fail for Plone 4.0, but I'm not game to fix this atm.
  • Loading branch information
jaroel committed Apr 9, 2013
1 parent cda6761 commit c09d009
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -37,4 +37,4 @@ dist
venv
bin
src

buildout-cache
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ python:
- 2.6
- 2.7
env:
- PLONE=4.0
- PLONE=4.1
- PLONE=4.2
- PLONE=4.3
Expand Down
5 changes: 4 additions & 1 deletion collective/z3cform/datagridfield/blockdatagridfield.py
Expand Up @@ -2,7 +2,10 @@
import zope.component
import zope.schema.interfaces
from zope.schema.interfaces import IObject
from zope.browserpage.viewpagetemplatefile import ViewPageTemplateFile
try:
from zope.browserpage.viewpagetemplatefile import ViewPageTemplateFile
except ImportError:
from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile

from z3c.form import interfaces
from z3c.form.widget import FieldWidget
Expand Down
11 changes: 10 additions & 1 deletion travis-4.0.x.cfg
@@ -1,2 +1,11 @@
[buildout]
extends = https://raw.github.com/collective/buildout.plonetest/master/travis-4.0.x.cfg base.cfg
extends =
https://raw.github.com/collective/buildout.plonetest/master/travis-4.0.x.cfg
http://good-py.appspot.com/release/dexterity/1.0-next?plone=4.0
base.cfg

test-eggs = Pillow

[versions]
zope.schema = 3.6.0
Plone = 4.0.9

4 comments on commit c09d009

@miohtama
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@miohtama
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

... and looks like we have PR issue https://dev.plone.org/ticket/13339

@miohtama
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, looks like we slipped HISTORY.txt update for the last release. @jaroel Could you please update HISTORY.txt for 0.13 post-humonously?

@jaroel
Copy link
Member Author

@jaroel jaroel commented on c09d009 Apr 11, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

Please sign in to comment.