Conversation
| pip install pipreqs | ||
| pip install sqlalchemy | ||
| pip install pytest-asyncio | ||
| pip install -e . |
There was a problem hiding this comment.
I feel like this is a better way to get our local quest into the dependency list
There was a problem hiding this comment.
I think we should be using poetry to set up the environment from the .lock or .toml files.
There was a problem hiding this comment.
Okay. pip install -e . does look at the .toml file to set up the local package, but I'll look into other ways
| - name: Install Requirements | ||
| run: | | ||
| echo quest==0.1.1 > requirements.ignore | ||
| grep -v '^quest==' requirements.txt > requirements_clean.txt |
There was a problem hiding this comment.
Previous line wasn't doing anything
|
I wanted to try to make a few adjustments because we are inadvertently adding the 'quest' package from PyPI through |
No description provided.