#!/bin/sh

# port test suite to stdlib
sed -i \
        -e s/aiounittest/unittest/ \
        -e s/AsyncTestCase/IsolatedAsyncioTestCase/ \
        aiosqlite/tests/*.py

python3 -m pytest aiosqlite/tests/*
