```
lang=bash
# Test with origin ids
pytest --hypothesis-profile=swh-web-fast swh/web/
# Disable origin ids
cd ../swh-storage/
arc patch D1690
sed "s/ENABLE_ORIGIN_IDS = True/ENABLE_ORIGIN_IDS = False/"
cd ../swh-web/
# Test without origin ids
pytest --hypothesis-profile=swh-web-fast swh/web/ -m "not origin_id"
```