#!/bin/bash
set -e
CUR_DIR=`pwd`

for py in $(py3versions --supported) ; do
   cd "$AUTOPKGTEST_TMP"
   cp -a ${CUR_DIR}/anndata/tests .
   echo "Testing with $py:"
   $py -m pytest
done
