File: run-unit-test

package info (click to toggle)
python-tinyalign 0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: python: 140; sh: 24; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

for py in $(py3versions -r 2> /dev/null)
do
    pushd tests
    echo "Testing with $py in $(pwd):"
    http_proxy="" $py -m pytest -v
    popd
done