#!/bin/sh
set -efux

pys="$(py3versions -rv 2>/dev/null)"

for py in $pys; do
    echo "=== python$py ==="

    python$py `which gitinspector` --help
done
