File: python.sh

package info (click to toggle)
phat 1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,952 kB
  • sloc: cpp: 3,170; python: 389; ansic: 144; sh: 33; makefile: 11
file content (11 lines) | stat: -rwxr-xr-x 187 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

for py3ver in $(py3versions -vs)
do
    echo "Running tests with Python ${py3ver}."
    /usr/bin/python${py3ver} -B debian/tests/python.py
    echo "---------"
done