buildout.cfg
| author |
Gael Pasgrimaud <gael@gawel.org> |
|
Thu Mar 11 11:28:43 2010 +0100 (6 months ago) |
| changeset 111 |
cdf4b92a4ef0 |
| parent 94 |
a34aedad93f3
|
| child 130 |
c71b1769bca1 |
| permissions |
-rw-r--r-- |
allow to add authorized_keys
|
gael@0
|
1 |
[buildout] |
|
gael@0
|
2 |
newest = false |
|
gael@92
|
3 |
parts = eggs tests |
|
gael@19
|
4 |
extensions = gp.vcsdevelop |
|
gael@83
|
5 |
develop-dir = .. |
|
gael@19
|
6 |
develop = |
|
gael@19
|
7 |
. |
|
gael@0
|
8 |
|
|
gael@0
|
9 |
[eggs] |
|
gael@0
|
10 |
recipe = zc.recipe.egg |
|
gael@0
|
11 |
eggs = |
|
gael@1
|
12 |
MercurialApp |
|
gael@7
|
13 |
WebTest |
|
gael@38
|
14 |
Sphinx |
|
gael@15
|
15 |
ipython |
|
gael@92
|
16 |
interpreter=python |
|
gael@92
|
17 |
|
|
gael@92
|
18 |
[tests] |
|
gael@92
|
19 |
recipe = zc.recipe.egg |
|
gael@92
|
20 |
eggs = |
|
gael@92
|
21 |
${eggs:eggs} |
|
gael@7
|
22 |
nose |
|
gael@92
|
23 |
initialization = |
|
gael@92
|
24 |
import os |
|
gael@92
|
25 |
import shutil |
|
gael@92
|
26 |
fake_home = os.path.join(os.getcwd(), 'fake_home') |
|
gael@93
|
27 |
if not os.path.isdir(fake_home): os.makedirs(fake_home) |
|
gael@92
|
28 |
os.environ['HOME'] = fake_home |
|
gael@92
|
29 |
os.environ['PASTE_CONFIG'] = '${buildout:directory}/hgapp/test.ini' |
|
gael@92
|
30 |
|
|
gael@92
|
31 |
scripts = |
|
gael@92
|
32 |
nosetests=nosetests |
|
gael@93
|
33 |
hgapp-keys=test-keys |