diff --git a/debian/control b/debian/control index 9e98d2a0..f3a18b98 100644 --- a/debian/control +++ b/debian/control @@ -1,23 +1,29 @@ Source: swh-web-ui Maintainer: Software Heritage developers Section: python Priority: optional Build-Depends: debhelper (>= 9), dh-python, + libjs-cryptojs, + libjs-jquery-flot, + libjs-jquery-flot-tooltip, python3-all, + python3-flask-api, + python3-flask-testing, python3-nose, python3-setuptools, python3-swh.core (>= 0.0.20~), python3-swh.storage (>= 0.0.33~), python3-vcversioner, - libjs-cryptojs, - libjs-jquery-flot, - libjs-jquery-flot-tooltip + python3-yaml Standards-Version: 3.9.6 Homepage: https://forge.softwareheritage.org/diffusion/DWUI/ Package: python3-swh.web.ui Architecture: all -Depends: ${misc:Depends}, +Depends: libjs-cryptojs, + python3-swh.core (>= 0.0.20~), + python3-swh.storage (>= 0.0.33~), + ${misc:Depends}, ${python3:Depends} Description: Software Heritage Web UI diff --git a/debian/rules b/debian/rules index e5f791e6..7361d39c 100755 --- a/debian/rules +++ b/debian/rules @@ -1,9 +1,12 @@ #!/usr/bin/make -f export PYBUILD_NAME=swh-web-ui +TEST_DIRS := $(shell find swh -name tests -type d) %: dh $@ --with python3 --buildsystem=pybuild - override_dh_auto_test: + PYBUILD_SYSTEM=custom \ + PYBUILD_TEST_ARGS="cd {build_dir}; python{version} -m nose $(TEST_DIRS) -sva '!db'" \ + dh_auto_test