Skip to content
Commits on Source (4)
......@@ -2,6 +2,11 @@ python-cogent (1.9-12) UNRELEASED; urgency=medium
* Add registry data
* Testsuite: autopkgtest-pkg-python
* honor "nocheck" in DEB_BUILD_OPTIONS
Closes: #898334
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.4
-- Andreas Tille <tille@debian.org> Wed, 28 Mar 2018 19:03:41 +0200
......
......@@ -6,7 +6,7 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 11~),
dh-python,
python-all-dev,
python-matplotlib,
......@@ -30,9 +30,9 @@ Build-Depends: debhelper (>= 10),
raxml [any-amd64 any-i386],
rdp-classifier,
rtax
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/python-cogent.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/python-cogent.git
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/python-cogent
Vcs-Git: https://salsa.debian.org/med-team/python-cogent.git
Homepage: http://pycogent.org/
Package: python-cogent
......
......@@ -77,6 +77,7 @@ override_dh_installdocs:
rm -rf debian/$(PKG)/usr/share/doc/$(PKG)/html/_sources
override_dh_auto_test:
ifeq (,$(filter nocheck, $(DEB_BUILD_OPTIONS)))
cp -a tests/alltests.py tests/alltests.py~
# exclude tests known to fail
for tst in $(FAILED_TESTS) ; do sed -i "/$${tst}/d" tests/alltests.py ; done
......@@ -108,6 +109,7 @@ endif
# restore original tests file
mv tests/alltests.py~ tests/alltests.py
find tests -name "*.pyc" -delete
endif
get-orig-source:
mkdir -p ../tarballs
......