2023-03-20 13:07:52 +00:00
|
|
|
# nomos-specs
|
|
|
|
Nomos related specification and documentation
|
2024-01-24 22:04:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Running Tests
|
|
|
|
|
|
|
|
To run all tests, run the following from the project root
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python -m unittest -v
|
|
|
|
```
|
|
|
|
|
|
|
|
To test a specific module
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python -m unittest -v cryptarchia.test_leader
|
|
|
|
```
|
2024-02-01 21:16:14 +00:00
|
|
|
|
|
|
|
Or all test modules in a directory
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python -m unittest -v cryptarchia/test_*
|
|
|
|
```
|