File: testsuite3

package info (click to toggle)
dulwich 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,388 kB
  • sloc: python: 99,991; makefile: 163; sh: 67
file content (14 lines) | stat: -rwxr-xr-x 221 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

unset http_proxy
unset https_proxy

rv=0
for py3 in $(py3versions -s); do
  echo "========= Running tests with $py3 =========="
  if ! $py3 -m unittest tests.test_suite; then
    rv=1
  fi
done
exit $rv