#!/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
