aboutsummaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-04 01:57:10 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-04 01:57:10 +0530
commit0c0c5868c945d0cdfcbb31b9733ef2a7105d8cb4 (patch)
tree790b2c974191ebcc4ec08e84c232b989880153d6 /Pipfile
parent45d2a455f0061bfea690e27e2c42143f52242048 (diff)
added dev dependencies and scripts
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 63a1647..29fcf0c 100644
--- a/Pipfile
+++ b/Pipfile
@@ -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