File: run-unit-test

package info (click to toggle)
python-pyani 0.2.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 159,800 kB
  • sloc: python: 3,111; makefile: 86; sh: 30
file content (6 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
#!/bin/bash
set -e
for py in $(py3versions -r 2> /dev/null)
do echo "Testing with $py in $(pwd):"
    nosetests3 -v
done