#!/bin/sh

set -e

PYS=$(py3versions -s)

for py in $PYS; do
    echo "Testing with $py:"
    timeout 300 $py -m pytest ipykernel
done
