```
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/" swh/storage/in_memory.py
cd ../swh-web/
# Test without origin ids (and disable tests that require origin ids)
pytest --hypothesis-profile=swh-web-fast swh/web/ -m "not origin_id"
```