File tree Expand file tree Collapse file tree 2 files changed +73
-0
lines changed Expand file tree Collapse file tree 2 files changed +73
-0
lines changed Original file line number Diff line number Diff line change
1
+ [buildout]
2
+ extends = versions.cfg
3
+ parts = test
4
+ test-and-cover
5
+ flake8
6
+ evolution
7
+ coveralls
8
+ develop = .
9
+ eggs = django
10
+ django-tagging
11
+ show-picked-versions = true
12
+
13
+ [test]
14
+ recipe = pbp.recipe.noserunner
15
+ eggs = nose
16
+ nose-sfd
17
+ nose-progressive
18
+ ${buildout:eggs}
19
+ defaults = --with-progressive
20
+ --with-sfd
21
+ environment = testenv
22
+
23
+ [test-and-cover]
24
+ recipe = pbp.recipe.noserunner
25
+ eggs = nose
26
+ nose-sfd
27
+ coverage
28
+ ${buildout:eggs}
29
+ defaults = --with-coverage
30
+ --cover-package =tagging
31
+ --cover-erase
32
+ --with-sfd
33
+ environment = testenv
34
+
35
+ [flake8]
36
+ recipe = zc.recipe.egg
37
+ eggs = flake8
38
+
39
+ [evolution]
40
+ recipe = zc.recipe.egg
41
+ eggs = buildout-versions-checker
42
+ arguments = ' -w --sorting alpha -e pep8'
43
+ scripts = check-buildout-updates =${:_buildout_section_name_}
44
+
45
+ [coveralls]
46
+ recipe = zc.recipe.egg
47
+ eggs = python-coveralls
48
+
49
+ [testenv]
50
+ DJANGO_SETTINGS_MODULE = tagging.tests.settings
Original file line number Diff line number Diff line change
1
+ [versions]
2
+ blessings = 1.6
3
+ buildout-versions-checker = 1.9
4
+ coverage = 3.7.1
5
+ django = 1.8.1
6
+ flake8 = 2.4.0
7
+ futures = 3.0.2
8
+ mccabe = 0.3
9
+ nose = 1.3.6
10
+ nose-progressive = 1.5.1
11
+ nose-sfd = 0.4
12
+ packaging = 15.1
13
+ pbp.recipe.noserunner = 0.2.6
14
+ pep8 = 1.5.7
15
+ pyflakes = 0.8.1
16
+ python-coveralls = 2.5.0
17
+ pyyaml = 3.11
18
+ requests = 2.7.0
19
+ setuptools = 15.2
20
+ sh = 1.11
21
+ six = 1.9.0
22
+ zc.buildout = 2.3.1
23
+ zc.recipe.egg = 2.0.1
You can’t perform that action at this time.
0 commit comments