#!/bin/bash
set -e
arch=$(uname -m)
for py in $(py3versions -s); do
    if [[ "$arch" == "s390x" ]]; then
        $py -Wd -m pytest -k "not test_astropy_time_array" --no-cov -v -x 2>&1
    else
        $py -Wd -m pytest --no-cov -v -x 2>&1
    fi
done
