set -ev
sudo apt-get install python3
cargo build --verbose
if [ x"$SPEC" = "xtrue" ]; then
cd vendor/cmark-gfm/test
python3 spec_tests.py --program=../../../target/debug/comrak
python3 roundtrip_tests.py --program=../../../target/debug/comrak
else
cargo test --verbose
fi