#!/bin/bash
set -e

# Ignore nbdime, which is not packaged by debian
IGNORE_NBDIME="--ignore=tests/test_nbdime_reporter.py"

IGNORE_ALL="$IGNORE_NBDIME"

for python in $(py3versions -s); do
    $python -P -m pytest $IGNORE_ALL tests
done
