File: buildout.cfg

package info (click to toggle)
zodbpickle 1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 976 kB
  • sloc: ansic: 10,453; python: 9,022; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[buildout]
develop = . 
parts =
    test
    scripts

[test]
recipe = zc.recipe.testrunner
eggs =
    zodbpickle [test]
# there's test_pickle_2 for Python 2 and test_pickle_3 for Python 3
# different test files because metaclass syntax differs on Pythons
# test_pickle picks and returns the appropriate one
# without this we'd get an import error (actually syntax error) for one
# of them
defaults = ['-m', 'zodbpickle.tests.test_pickle$']

[scripts]
recipe = zc.recipe.egg
eggs = zodbpickle [test]
interpreter = py