A from-scratch atproto PDS implementation in Python (mirrors https://github.com/DavidBuchanan314/millipds)

document test running

+8
+8
README.md
··· 29 29 ### Production deployment on Ubuntu (and similar systems) [WIP] 30 30 31 31 See [./docs/DEPLOY.md](./docs/DEPLOY.md) 32 + 33 + 34 + ### Running the tests locally 35 + 36 + ```sh 37 + python3 -m pip install -e .[test] # install the testing dependencies (only needed once, unless new deps are added) 38 + python3 -m pytest . # run the tests 39 + ```