Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
run tests using the Python version being tested
· 37ee8283
Drew Parsons
authored
Sep 04, 2019
37ee8283
upload 0.10.0-5 to unstable
· 90bac715
Drew Parsons
authored
Sep 04, 2019
90bac715
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
90bac715
odil (0.10.0-5) unstable; urgency=medium
* Team upload.
* run tests using the Python version being tested
-- Drew Parsons <dparsons@debian.org> Wed, 04 Sep 2019 09:35:41 +0800
odil (0.10.0-4) unstable; urgency=medium
* Team upload.
...
...
debian/rules
View file @
90bac715
...
...
@@ -69,7 +69,7 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ln -sr ./build/wrappers/python ./build/odil; \
ln -sr ./wrappers/python/*.py ./build/odil; \
cd build && \
../tests/run --no-network \
python$${Python}
../tests/run --no-network \
--nose nosetests$$(dpkg --compare-versions $${Python} ge 3 && echo "3") \
-E ".*"; \
cd ..; \
...
...