File: py3

package info (click to toggle)
py3dns 4.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: python: 1,984; makefile: 10; sh: 7
file content (11 lines) | stat: -rw-r--r-- 163 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

set -e

unset http_proxy
unset https_proxy

for py3vers in $(py3versions -sv); do
    echo Testing with python$py3vers
    python$py3vers test.py
done