buildout.cfg 316 Bytes
Newer Older
1
[buildout]
2
develop = .
3 4 5 6
parts = test scripts

[test]
recipe = zc.recipe.testrunner
Jim Fulton's avatar
Jim Fulton committed
7
eggs = ZODB3 [test]
8
initialization = 
9 10 11
  import os, tempfile
  try: os.mkdir('tmp')
  except: pass
12
  tempfile.tempdir = os.path.abspath('tmp')
13
defaults = ['--all']
14 15 16

[scripts]
recipe = zc.recipe.egg
17
eggs = ZODB3 [test]
18
interpreter = py