summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-03-26 18:35:34 +0100
committerLars Wirzenius <liw@liw.fi>2012-03-26 18:35:34 +0100
commit7662c1d6ea7b84089cbb0c58209691dc0bac1de1 (patch)
treea13d52f9ec7a93942767c303c9a4211b71060600
parentdea5bcfa4256d9468b116f4760683d6354eb8daa (diff)
downloadobnam-7662c1d6ea7b84089cbb0c58209691dc0bac1de1.tar.gz
Only run fast checks during Debian package build
-rw-r--r--debian/changelog4
-rwxr-xr-xdebian/rules2
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 59ec90f7..50a3204f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,10 @@ obnam (0.26-1) unstable; urgency=low
* New upstream version.
* debian/control: Bump python-larch dependencies to 0.28.
+ * debian/rules: Only run the fast tests. The slow ones can take hours,
+ and it's not worth doing that for every build.
- -- Lars Wirzenius <liw@liw.fi> Sun, 25 Mar 2012 17:15:59 +0100
+ -- Lars Wirzenius <liw@liw.fi> Mon, 26 Mar 2012 18:35:18 +0100
obnam (0.25-1) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index 2fef26e7..3b9372ea 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,5 +6,5 @@ override_dh_auto_test:
python setup.py build_ext -i
rm -rf build
cp -a test-gpghome temp.gpghome
- env GNUPGHOME=temp.gpghome python setup.py check
+ env GNUPGHOME=temp.gpghome python setup.py check --fast
rm -rf temp.gpghome