Contribution guidelines missing
vrslev opened this issue · 4 comments
Hey there! I have an issue with your project and was willing to try to fix it myself or at least make minimal reproducible example for issue.
First, I need to install the project locally to test it out, look at codebase, etc—but there's no guide for that. Packaging system is unclear to me: you have a pipfile and setup.py. Also a makefile that doesn't have install
instruction. What is the preferred way to install it for development?
Valid point @vrslev, this is still todo for me. For installation, just install via pipenv and everything should work. I am using direnv
for switching venvs, so you also might look at .envrc
.
Would you like to tell me the issue you are having?
Got it. At first, I thought the issue is with this library, but it turned out it was watchfiles. I had FastAPI app with SSE endpoint that yielded files system changes.
For anyone else interested, what works for me:
- install pipenv:
pip install pipenv
- install dependencies using pipenv:
pipenv install --dev -e .
--dev
flag will install packages like pytest-e .
is to install the sse-starlette package in editable mode (as opposed to having sse-starlette be installed in site-packages). This way, I can modify sse-starlette and when running tests through pytest, it runs code where my changes are applied. --> This is how I understand it anyway.- When I pass
-e .
some files in the project were changed / new files were added; I just discarded those and things should still work as expected: you'd be able to runpytest
with your changes to the sse-starlette package.
- When I pass
- To run tests, either:
pipenv shell
and thenpytest
- or
pipenv run pytest