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