#!/bin/bash
set -e

# Ignore tests because an issue with pandas with Py3.12
for py in $(py3versions --supported 3> /dev/null)
do
        $py -m pytest -v Test -k 'not function_test and not plot_test and not verified_test'
done
