summaryrefslogtreecommitdiff
path: root/buildout.cfg
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2009-05-13 22:49:50 +0000
committerTres Seaver <tseaver@palladion.com>2009-05-13 22:49:50 +0000
commit50e7b6955cc0f398693f158ba1cae1ab35793183 (patch)
treea1a9cc06e7efe15f2f89a209b4051be94ae9fa01 /buildout.cfg
parente2e12dc280e94bb8f65fecdfe417c3bded9239e4 (diff)
downloadzope-security-50e7b6955cc0f398693f158ba1cae1ab35793183.tar.gz
Made ``pytz`` a soft dependency.
The checker for ``pytz.UTC`` is created / tested only if the package is already present. Run ``bin/test_pytz`` to run the tests with ``pytz`` on the path.
Diffstat (limited to 'buildout.cfg')
-rw-r--r--buildout.cfg6
1 files changed, 5 insertions, 1 deletions
diff --git a/buildout.cfg b/buildout.cfg
index dbd6e62..58536c2 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -1,11 +1,15 @@
[buildout]
develop = .
-parts = test python coverage-test coverage-report
+parts = test test_pytz python coverage-test coverage-report
[test]
recipe = zc.recipe.testrunner
eggs = zope.security [test]
+[test_pytz]
+recipe = zc.recipe.testrunner
+eggs = zope.security [test,pytz]
+
[python]
recipe = zc.recipe.egg
eggs = zope.security [untrustedpython]