#!/bin/sh

set -e

rm -rf __pycache__
cp -a /usr/bin/buku buku.py
sync
python3 -m pytest ./tests/test_BukuCrypt.py --cov buku -vv --durations=0
python3 -m pytest ./tests/test_ExtendedArgumentParser.py --cov buku -vv --durations=0
python3 -m pytest ./tests/test_import_firefox_json.py --cov buku -vv --durations=0
rm -rf buku.py
