aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2019-10-25 10:12:23 -0700
committerGravatar GitHub <[email protected]>2019-10-25 10:12:23 -0700
commite68e9ef9cc6d6670a1c6b6a712fe87be1f33d60b (patch)
treecccbc64ce0b9056efb7b2c07cbec9826d77400ff /Pipfile
parentRemove bold tag when no channel is available (diff)
parentMerge pull request #501 from mathsman5133/reddit-makeover (diff)
Merge branch 'master' into compact_free
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Pipfile b/Pipfile
index 82847b23f..48d839fc3 100644
--- a/Pipfile
+++ b/Pipfile
@@ -21,6 +21,7 @@ more_itertools = "~=7.2"
urllib3 = ">=1.24.2,<1.25"
[dev-packages]
+coverage = "~=4.5"
flake8 = "~=3.7"
flake8-annotations = "~=1.1"
flake8-bugbear = "~=19.8"
@@ -31,9 +32,8 @@ flake8-tidy-imports = "~=2.0"
flake8-todo = "~=0.7"
pre-commit = "~=1.18"
safety = "~=1.8"
+unittest-xml-reporting = "~=2.5"
dodgy = "~=0.1"
-pytest = "~=5.1"
-pytest-cov = "~=2.7"
[requires]
python_version = "3.7"
@@ -44,3 +44,5 @@ lint = "python -m flake8"
precommit = "pre-commit install"
build = "docker build -t pythondiscord/bot:latest -f Dockerfile ."
push = "docker push pythondiscord/bot:latest"
+test = "coverage run -m unittest"
+report = "coverage report"