Skip to content

Commit

Permalink
README: clarify how to install requirements for unit testing and how …
Browse files Browse the repository at this point in the history
…to run unit tests
  • Loading branch information
em92 committed Oct 19, 2024
1 parent 6cdd49c commit ab3eb06
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,17 @@ and thus not have the client download them automatically.

## Develop

To run unittests, use following commands:
To install requirements for unit testing:

```
git submodule update
git submodule init
git submodule update --recursive
python3 -m pip install mockito
```

To run unit tests, use following commands:

```
python3 -m unittest tests
```

Expand Down

0 comments on commit ab3eb06

Please sign in to comment.