Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix a typo in d/rules, skip the tests only on s390x
· 22ce1860
Alexandre Mestiashvili
authored
Sep 19, 2019
22ce1860
Update d/changelog
· e1417c44
Alexandre Mestiashvili
authored
Sep 19, 2019
Gbp-Dch: Ignore
e1417c44
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e1417c44
pycorrfit (1.1.6+dfsg-4) unstable; urgency=medium
* Fix typo in d/rules, skip tests only on s390x
-- Alexandre Mestiashvili <mestia@debian.org> Thu, 19 Sep 2019 16:12:39 +0200
pycorrfit (1.1.6+dfsg-3) unstable; urgency=medium
* Skip build-tests on s390x, failing on a buildd, passing on a porter box
...
...
debian/rules
View file @
e1417c44
...
...
@@ -9,7 +9,7 @@ ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
endif
include /usr/share/dpkg/architecture.mk
if
n
eq ($(DEB_HOST_ARCH),s390x)
ifeq ($(DEB_HOST_ARCH),s390x)
export PYBUILD_TEST_PYTEST=0
endif
...
...