Fueled / django-init

Project template used at Fueled for scaffolding new Django based projects. :dizzy:
Other
189 stars 46 forks source link

fix(github-actions): Use poetry to install requirements & run tests #456

Closed CuriousLearner closed 2 years ago

CuriousLearner commented 2 years ago

Why was this change necessary?

Currently github-actions uses legacy requirement file for dependency installation and not the updated poetry lock file. This legacy file can get out-of-date pretty quickly and a better way is to just use poetry to install dependencies and run tests.

How does it address the problem?

Use poetry to install dependencies and run pytest.

Are there any side effects?

None.