File: python3-tests

package info (click to toggle)
javaproperties 0.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 388 kB
  • sloc: python: 4,162; sh: 8; makefile: 4
file content (12 lines) | stat: -rwxr-xr-x 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -eu
set -o pipefail

rm -rf "${AUTOPKGTEST_TMP}/test"
cp -r ./test "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"
for p in $(py3versions -s); do
    TZ=EST5EDT,M3.2.0,M11.1.0 "${p}" -m pytest -v -c /dev/null
done