#!/bin/bash
set -e

QUILT_PATCHES=debian/patches quilt push -a || true
python3 -m pytest --ignore=.pc -v --datadir `pwd`/debian/data
QUILT_PATCHES=debian/patches quilt pop -a || true

echo "PASS"
