mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-01-17 09:28:05 +00:00
11 lines
273 B
Bash
Executable file
11 lines
273 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
rm -rf pypicohsm
|
|
git clone https://github.com/polhenarejos/pypicohsm.git
|
|
pip3 install -e pypicohsm
|
|
/usr/sbin/pcscd &
|
|
sleep 2
|
|
rm -f memory.flash
|
|
tar -xf tests/memory.tar.gz
|
|
./build_in_docker/pico_hsm > /dev/null &
|
|
pytest tests -W ignore::DeprecationWarning
|