Emmanuel Arias pushed to branch master at Debian Med / ariba
Commits: 0f40cd0b by Emmanuel Arias at 2024-11-03T14:14:42-03:00 Team upload. * Team upload. * d/rules: Skip test_load_fasta_files_and_write_clusters_file test for non-supported Python3 versions. Spades need to be built for all supported Python3 before remove the skip (Closes: #1085587). - - - - - 2 changed files: - debian/changelog - debian/rules Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,12 @@ +ariba (2.14.7+ds-3) UNRELEASED; urgency=medium + + * Team upload. + * d/rules: Skip test_load_fasta_files_and_write_clusters_file test for + non-supported Python3 versions. Spades need to be built for all supported + Python3 before remove the skip (Closes: #1085587). + + -- Emmanuel Arias <[email protected]> Sat, 02 Nov 2024 18:13:20 -0300 + ariba (2.14.7+ds-2) unstable; urgency=medium * Team upload. ===================================== debian/rules ===================================== @@ -2,6 +2,8 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow export PYBUILD_NAME=ariba +export PY3 := $(shell python3 -c "import sys;print('python{0}.{1}'.format(sys.version_info.major, sys.version_info.minor))") + mandir := $(CURDIR)/debian/man debfolder := $(CURDIR)/debian @@ -17,3 +19,10 @@ override_dh_installman: mkdir -p $(mandir) asciidoctor -a docdate='' -b manpage -o $(mandir)/ariba.1 $(debfolder)/ariba.1.adoc dh_installman -- + +override_dh_auto_test: + if [ "$(shell py3versions -d)" != "$(PY3)" ]; then \ + PYBUILD_TEST_ARGS=-k "not test_load_fasta_files_and_write_clusters_file" dh_auto_test; \ + else \ + dh_auto_test; \ + fi View it on GitLab: https://salsa.debian.org/med-team/ariba/-/commit/0f40cd0b6ebf25d46faf6de34f0a0eb6272d686b -- View it on GitLab: https://salsa.debian.org/med-team/ariba/-/commit/0f40cd0b6ebf25d46faf6de34f0a0eb6272d686b You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
