#!/bin/sh
set -e -u
cd "$ADTTMP"

for python in $(pyversions -i); do
        PYTHONWARNINGS=d $python-dbg -m PyMca5.tests.TestAll 2>&1
done

