nknaian / musicrecs

A Spotify-powered music recommendation platform with snoozin 'n friends
MIT License
3 stars 0 forks source link

Testing: Investigate Possibilities #27

Closed nknaian closed 3 years ago

nknaian commented 3 years ago

Currently the only testing is flake8 (run via github tasks).

We should look into adding some more testing to make this site robust.

nknaian commented 3 years ago

So looks like there's a nice way of making units tests for flask stuff' https://flask.palletsprojects.com/en/1.1.x/testing/

nknaian commented 3 years ago

I'm going to use unittest and possibly the Flask-Testing package for the unit testing. Miguel has not posted an updated tutorial on unit testing, but at this github page for the tutorial he is using unittest. I'm going to follow that for reference: https://github.com/miguelgrinberg/microblog/tree/v0.23

nknaian commented 3 years ago

I created #40, #41, #42 and #43 based on research done on this ticket.