#!/bin/sh -ex

for py in $(py3versions -r 2>/dev/null); do
    echo "Testing with $py: ";
    $py -m pytest --pyargs orangecanvas -k "not test_iconengine"
done
