#!/bin/sh
set -e
for py in $(py3versions -s); do
$py -Wd -m pytest -v -k "not test_smhi_integration_test" -x 2>&1
done
