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

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

