#!/bin/sh
set -e
cd /
for py in $(py3versions -i); do echo "[*] testing $py:"; $py -c 'import bcolz; bcolz.test()'; done
