Skip to content

Commit 7b2d385

Browse files
committed
test: Add a README
1 parent f087342 commit 7b2d385

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13+
- name: Set up Python
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.x'
17+
18+
- name: Create and activate virtual environment
19+
run: |
20+
python -m venv venv
21+
source venv/bin/activate
22+
23+
- name: Install dependencies
24+
run: |
25+
pip install pycryptodomex
26+
1327
- name: Run EEPROM Config Tests
1428
run: |
1529
cd test

test/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# rpi-eeprom - unit tests
2+
3+
## test-rpi-eeprom-config
4+
Unit test for rpi-eeprom-config which verifies:
5+
6+
* rpi-eeprom-config is compatible with all EEPROM binaries
7+
* unit tests for modifying the boot.conf file
8+
* simple code signing test
9+
10+
To run on Linux:
11+
```
12+
cd test
13+
./test-rpi-eeprom-config
14+
```

0 commit comments

Comments
 (0)