- This is deprecated because for now we are using sqlite for testing
- In time, we may add this back
- we need
pg_config
to be installed in order to use python locally brew install postgresql
- you may need to do
brew tap homebrew/core
first
- you may need to do
- install pyenv
- use it to install python 3.9 and 3.10, or the versions you care about
pyenv local 3.9.17 3.10.11
or whatever versions you want
make requirements
to install pip deps- note that this requires
pg_config
to be on PATH
- note that this requires
- in another terminal, bring up dockerized postgres:
docker compose up
make test
to run tests