blob: 842c1cec76a3a9a67ab848b6eca2fa7b35033329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
default:
image: debian:unstable
tests:
before_script:
- apt-get update
- apt-get -y install --no-install-recommends build-essential debhelper fakeroot flit libjs-jquery python3-all python3-all-dbg python3-all-dev python3-build python3-installer python3-nose2 python3-poetry-core python3-pytest python3-setuptools python3-tomli tox
script:
- make tests
- echo -e '#!/bin/sh\nset -eu\nmake "$@"' > debian/tests/run-installed
- export DH_PYTHON_DIST=$PWD/pydist
- ./debian/tests/dh-python
- ./debian/tests/pybuild
|