Codebase list ptyprocess / 3592a1d
d/tests: run tests with all available python versions. Louis-Philippe VĂ©ronneau 1 year, 4 months ago
3 changed file(s) with 14 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 ptyprocess (0.7.0-5) UNRELEASED; urgency=medium
11
22 * Team upload.
3 * Build using the generic pyproject pybuild plugin.
3 * d/control: Build using the generic pyproject pybuild plugin.
4 * d/tests: run tests with all available python versions.
45
56 -- Louis-Philippe VĂ©ronneau <pollo@debian.org> Fri, 02 Dec 2022 11:54:16 -0500
67
00 Tests: upstreamtestsuite3
1 Depends: python3-ptyprocess, python3-pytest
1 Depends: python3-all, python3-pytest, @
00 #!/bin/sh
1 set -e
2 pytest-3 tests 2>1
1 set -efu
2
3 pys="$(py3versions -s 2> /dev/null)"
4
5 cp -a tests "$AUTOPKGTEST_TMP"
6 cd "$AUTOPKGTEST_TMP"
7
8 for py in $pys; do
9 echo "=== $py ==="
10 $py -m pytest -v tests
11 done