#!/bin/bash
set -e

for py in $(py3versions --supported 3> /dev/null)
do
        $py -m pytest -v Test -k 'not plot_error_test'
done
