File: python

package info (click to toggle)
orange3 3.40.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,908 kB
  • sloc: python: 162,745; ansic: 622; makefile: 322; sh: 93; cpp: 77
file content (14 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -ex


# Exécuter les tests pour chaque version de Python

export HOME="$AUTOPKGTEST_TMP"
export XDG_CACHE_HOME="$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s 2>/dev/null);
do echo "Testing with $py:"
   $py -m unittest -v Orange.tests Orange.widgets.tests   
done