#! /bin/sh

set -efu

PYS=$(py3versions -s)
for py in $PYS; do
    echo "Testing with $py:"
    xvfb-run -a -s "-screen 0 1024x768x24" \
        $py -m pytest qtconsole/tests
done
