File: run-unit-test

package info (click to toggle)
python-pynndescent 0.5.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,116 kB
  • sloc: python: 7,536; makefile: 12; sh: 8
file content (10 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e

SOURCE=$(pwd)
for py in $(py3versions -s 2>/dev/null)
do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    http_proxy= $py -m pytest ${SOURCE}/pynndescent/tests
done