17 lines
600 B
Markdown
17 lines
600 B
Markdown
This directory concerns the migration to C++ the ble-reticulum project.
|
|
|
|
## Test environment note
|
|
|
|
The project pytest configuration expects `pytest-asyncio`. 2 warning had issued, I had to rem the --disable-warnings flag in pytest.ini for the warnings to appear, when they appeared is became obvious that the absence of pytest-asyncio was creating the problem.
|
|
|
|
FIX: Install in the active virtual environment:
|
|
|
|
```bash
|
|
python3 -m pip install pytest-asyncio
|
|
```
|
|
|
|
Equivalence test:
|
|
```bash
|
|
cd /usr/local/src/ble-reticulum
|
|
python3 -m pytest migration/tests/test_fragmentation_cpp_equivalence.py -vv
|
|
```
|