#!/bin/bash

# we want to run the pytest test suite, but we do not want it running
# from the main working directory (we want it to look for the
# installed package)

mkdir -p xxx
cp -a tests test.py xxx/
cd xxx
python3 test.py
