aboutsummaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
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