#!/bin/sh

set -e

cd test
for py in $(py3versions -s); do
    echo "[*] testing $py:"
    $py test_codec.py 2>&1
done
