Update readme

This commit is contained in:
Simon Alibert 2024-03-08 16:48:33 +01:00
parent 74ad9d5154
commit 327f60e4be
1 changed files with 20 additions and 1 deletions

View File

@ -115,6 +115,25 @@ pre-commit run -a
``` ```
**Tests** **Tests**
Install [git lfs](https://git-lfs.com/) to retrieve test artifacts (if you don't have it already).
On Mac:
``` ```
pytest -sx tests brew install git-lfs
git lfs install
```
On Ubuntu:
```
sudo apt-get install git-lfs
git lfs install
```
Pull artifacts if they're not in [tests/data](tests/data)
```
git lfs pull
```
```
DATA_DIR="tests/data" pytest -sx tests
``` ```