diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 01:57:10 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 01:57:10 +0530 |
commit | 0c0c5868c945d0cdfcbb31b9733ef2a7105d8cb4 (patch) | |
tree | 790b2c974191ebcc4ec08e84c232b989880153d6 /Pipfile | |
parent | 45d2a455f0061bfea690e27e2c42143f52242048 (diff) |
added dev dependencies and scripts
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -4,6 +4,8 @@ url = "https://pypi.org/simple" verify_ssl = true [dev-packages] +pytest = "*" +pytest-codecov = "*" [packages] flask = "*" @@ -12,7 +14,10 @@ flask-wtf = "*" email-validator = "*" flask-bcrypt = "*" flask-login = "*" -pytest = "*" [requires] python_version = "3.8" + +[scripts] +tests = "python -m pytest" +tests-codecov = "python -m pytest --cov=./ --cov-report=xml"
\ No newline at end of file |