ZoranPandovski / flaskr-intro

:mailbox_with_no_mail: Mini blog application following the Flask tutorial :mailbox_with_no_mail:
MIT License
6 stars 11 forks source link

fixed dependencies for tests #15

Closed thinkgruen closed 5 years ago

thinkgruen commented 5 years ago

For Python versions < 3.3 mock is not yet part of the standard library. The only way to use it then is by installing the package itself.

This should fix #14

thinkgruen commented 5 years ago

Another way to solve it would be by only adding the module to the .travis.yml, but unlike coverage it is a requirement to pass the tests locally.