Merge pull request #2639 from ANTodorov/fix_unknown_flash
[RRG-proxmark3.git] / docker / debian-12-bookworm / README.md
blob67c0f6a8b17f71a982c6571242b40aff43607107
1 # Notes on run_tests.sh script
2 This script runs a bunch of different builds with make and cmake together
3 with the different combos of RDV4, GENERIC, BTADDON combos.
5 If all tests OK,  the script will finish with PASS.
8 # Notes to run tests
9 The script is to be run in proxmark root folder inside the docker env.
11 ```
12 docker/debian-12-bookworm/run_tests.sh;
13 ```
15 Or if you want to run single test,
17 ```
18 sudo apt update
19 make clean; make -j
20 python3 -m venv /tmp/venv
21 source /tmp/venv/bin/activate
22 python3 -m pip install --use-pep517 pyaes
23 python3 -m pip install ansicolors sslcrypto
24 tools/pm3_tests.sh --long
25 deactivate
26 ```