#!/bin/sh

set -e

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