Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
python 2.6 and below needs ordereddict
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Sep 29, 2012
1 parent 103b95b commit 9cfebe2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/z3c/recipe/paster/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from zope.testing import renormalizing
import doctest
import re
import sys
import unittest
import zc.buildout.testing

Expand Down Expand Up @@ -74,6 +75,10 @@ def setUp(test):
zc.buildout.testing.install('zope.traversing', test)
zc.buildout.testing.install_develop('z3c.recipe.paster', test)

if sys.version_info < (2, 7, 0):
# 2.6 and below needs ordereddict
zc.buildout.testing.install('ordereddict', test)

checker = renormalizing.RENormalizing([
zc.buildout.testing.normalize_path,
# note sure if misspelled?) has \n at the end on linux?
Expand Down

0 comments on commit 9cfebe2

Please sign in to comment.