File: download-py3

package info (click to toggle)
python-wget 3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 96 kB
  • sloc: python: 424; sh: 7; makefile: 3
file content (11 lines) | stat: -rwxr-xr-x 195 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

MY_DIR="$(readlink -e $(dirname "$0"))"

for py in $(py3versions -r 2>/dev/null) ; do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py "$MY_DIR/download.py"
done