aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-01-03 20:07:24 +0100
committerGravatar Johannes Christ <[email protected]>2019-01-03 20:07:24 +0100
commit5e603f3529dffb14274421d3784c5304f5faa87b (patch)
tree2079d4e74c5c2ed3c1d7ba2ba5a07f290d11e6d5 /Pipfile
parentAdd role and user differ unit tests. (diff)
Add `pytest` dev dependency.
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Pipfile b/Pipfile
index 179b317df..aafc9107a 100644
--- a/Pipfile
+++ b/Pipfile
@@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"
[packages]
-discord-py = {git = "https://github.com/Rapptz/discord.py.git", extras = ["voice"], ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb", editable = true}
+discord-py = {git = "https://github.com/Rapptz/discord.py.git",extras = ["voice"],ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb",editable = true}
dulwich = "*"
aiodns = "*"
logmatic-python = "*"
@@ -29,6 +29,7 @@ requests = "*"
"flake8-string-format" = "*"
safety = "*"
dodgy = "*"
+pytest = "*"
[requires]
python_version = "3.6"
@@ -36,12 +37,9 @@ python_version = "3.6"
[scripts]
start = "python -m bot"
lint = "python -m flake8"
-
build = "docker build -t pythondiscord/bot:latest -f docker/bot.Dockerfile ."
push = "docker push pythondiscord/bot:latest"
-
buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/base.Dockerfile ."
pushbase = "docker push pythondiscord/bot-base:latest"
-
buildci = "docker build -t pythondiscord/bot-ci:latest -f docker/ci.Dockerfile ."
pushci = "docker push pythondiscord/bot-ci:latest"