File: py3

package info (click to toggle)
pymilter 1.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,096 kB
  • sloc: python: 3,371; ansic: 1,333; makefile: 34; sh: 8
file content (7 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (2)
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:"
    PATH="/usr/sbin:$PATH" $py3vers test.py
done