#!/bin/sh

set -e

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