File: python

package info (click to toggle)
remctl 3.18-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,612 kB
  • sloc: ansic: 19,504; sh: 5,386; perl: 1,778; java: 740; makefile: 715; xml: 502; python: 430
file content (12 lines) | stat: -rwxr-xr-x 402 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# This is the (reformatted) output from autodep8 on the source package,
# specified here since autodep8 appears not to run if tests/control exists,
# thus requiring the test be specified manually.

set -e
for py in $(py3versions -s 2>/dev/null); do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -c "from __future__ import print_function; import remctl; print(remctl)"
done