File: upstream

package info (click to toggle)
libcloud 3.8.0%2Brepack-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 27,636 kB
  • sloc: python: 158,372; xml: 19,482; sh: 27; makefile: 11
file content (14 lines) | stat: -rwxr-xr-x 365 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -efu

cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
cp -rv libcloud/test "${AUTOPKGTEST_TMP}"
ln -s "${AUTOPKGTEST_TMP}/test/" /usr/lib/python3/dist-packages/libcloud/test
cd "${AUTOPKGTEST_TMP}"
touch test/secrets.py

for py in $(py3versions -s); do
    echo "[*] testing $py:"
    NO_INTERNET= $py -m pytest '-k not TestCaseMixin'
done