diff options
| author | 2019-10-25 08:51:25 -0400 | |
|---|---|---|
| committer | 2019-10-25 08:51:25 -0400 | |
| commit | 2b1c18e52c9072f3e8f04984a7a8900537a1e193 (patch) | |
| tree | 6e9e45e62b6423fc1c440eafded277dd32f53abf /Pipfile | |
| parent | Fix incorrect type hint for return value (diff) | |
| parent | Prepend emoji indicative of success of !eval (#552) (diff) | |
Merge branch 'master' into show-trigger-word
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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" |