File: run-unit-test

package info (click to toggle)
pyode 1.2.0.dev15-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 640 kB
  • sloc: python: 2,036; sh: 24; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 112 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/bash

set -e

for py in $(py3versions -r 2> /dev/null)
do
    $py -m unittest -v tests/test_xode.py
done