File: runtests

package info (click to toggle)
python-odf 1.3.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,356 kB
  • ctags: 1,902
  • sloc: python: 21,654; makefile: 352; sh: 10; xml: 2
file content (12 lines) | stat: -rwxr-xr-x 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
echo '========= Python 2 tests =========='
for file in test*.py
do
    python2  $file
done

echo '========= Python 3 tests =========='
for file in test*.py
do
    python3 $file
done