File: py3

package info (click to toggle)
pymilter 1.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,020 kB
  • sloc: python: 3,343; ansic: 1,333; makefile: 34; sh: 8
file content (7 lines) | stat: -rw-r--r-- 252 bytes parent folder | download
1
2
3
4
5
6
7
#! /bin/sh
# Test for all supported python3 versions so we find out if there are any
# issues with a new python3 version before it is the default version.
for py3vers in $(py3versions -s); do
    echo "Testing with $py3vers:"
    $py3vers test.py
done