#!/bin/bash
set -e
for py in $(py3versions -s 2> /dev/null)
do echo "Testing with $py in $(pwd):"
    pytest-3 -v deeptools
done
