File: run-unit-test

package info (click to toggle)
python-questplus 2019.4-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 400 kB
  • sloc: python: 2,401; makefile: 14; sh: 8
file content (12 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e

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