mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-14 21:58:44 +08:00
12 lines
351 B
Bash
12 lines
351 B
Bash
|
#!/usr/bin/env bash
|
||
|
# This script is to be run from proxmark root folder inside the docker env
|
||
|
# docker/debian-13-trixie/run_tests.sh;
|
||
|
|
||
|
sudo apt update && sudo apt upgrade -y
|
||
|
python3 -m venv /tmp/venv
|
||
|
source /tmp/venv/bin/activate
|
||
|
python3 -m pip install --use-pep517 pyaes
|
||
|
python3 -m pip install ansicolors sslcrypto
|
||
|
tools/release_tests.sh
|
||
|
deactivate
|