File: python

package info (click to toggle)
remctl 3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,348 kB
  • sloc: ansic: 19,365; sh: 5,203; perl: 1,767; java: 740; makefile: 715; xml: 501; python: 431
file content (12 lines) | stat: -rwxr-xr-x 431 bytes parent folder | download
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 $(pyversions -r 2>/dev/null) $(py3versions -r 2>/dev/null); do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -c "from __future__ import print_function; import remctl; print(remctl)"
done