aboutsummaryrefslogtreecommitdiff
path: root/buildout.cfg
diff options
context:
space:
mode:
authorJonas Genannt <genannt@debian.org>2015-11-15 22:26:10 +0100
committerJonas Genannt <genannt@debian.org>2015-11-15 22:26:10 +0100
commitda6a2bd205506257eaa6785c00981c88146d6c9f (patch)
tree6636c5e5a0186d9bf42c0df12bbb2180480ace7b /buildout.cfg
parent24cd0a91184be6fa20168f9b132b1ab3f5911949 (diff)
parentd65aa3c3c146b12548a54c894060bce9a8715ad2 (diff)
downloadpython-django-tagging-da6a2bd205506257eaa6785c00981c88146d6c9f.tar
python-django-tagging-da6a2bd205506257eaa6785c00981c88146d6c9f.tar.gz
Merge tag 'upstream/0.4'
Upstream version 0.4 # gpg: Signature made Sun 15 Nov 2015 10:26:06 PM CET using RSA key ID 016CFFD0 # gpg: Good signature from "Jonas Genannt <jonas@brachium-system.net>" # gpg: aka "Jonas Genannt <jonas.genannt@capi2name.de>" # gpg: aka "Jonas Genannt <genannt@debian.org>" * tag 'upstream/0.4': Imported Upstream version 0.4
Diffstat (limited to 'buildout.cfg')
-rw-r--r--buildout.cfg50
1 files changed, 50 insertions, 0 deletions
diff --git a/buildout.cfg b/buildout.cfg
new file mode 100644
index 0000000..728c5b7
--- /dev/null
+++ b/buildout.cfg
@@ -0,0 +1,50 @@
+[buildout]
+extends = versions.cfg
+parts = test
+ test-and-cover
+ flake8
+ evolution
+ coveralls
+develop = .
+eggs = django
+ django-tagging
+show-picked-versions = true
+
+[test]
+recipe = pbp.recipe.noserunner
+eggs = nose
+ nose-sfd
+ nose-progressive
+ ${buildout:eggs}
+defaults = --with-progressive
+ --with-sfd
+environment = testenv
+
+[test-and-cover]
+recipe = pbp.recipe.noserunner
+eggs = nose
+ nose-sfd
+ coverage
+ ${buildout:eggs}
+defaults = --with-coverage
+ --cover-package=tagging
+ --cover-erase
+ --with-sfd
+environment = testenv
+
+[flake8]
+recipe = zc.recipe.egg
+eggs = flake8
+
+[evolution]
+recipe = zc.recipe.egg
+eggs = buildout-versions-checker
+arguments = '-w --sorting alpha -e pep8'
+scripts = check-buildout-updates=${:_buildout_section_name_}
+
+[coveralls]
+recipe = zc.recipe.egg
+eggs = python-coveralls
+
+[testenv]
+DJANGO_SETTINGS_MODULE = tagging.tests.settings