File: run-unit-test

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

set -e

for py in $(py3versions -s)
do
    pushd tests
    echo "Testing with $py in $(pwd):"
    http_proxy="" $py -m pytest -v
    popd
done