aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index 5d48b1b..db53ce7 100644
--- a/Pipfile
+++ b/Pipfile
@@ -30,6 +30,12 @@ python_version = "3.7"
lint = "flake8"
precommit = "pre-commit install"
test = "scripts/dev.sh -c 'pipenv run coverage run -m unittest'"
+testb = """
+ scripts/dev.sh \
+ --build \
+ --clean \
+ -c 'pipenv run coverage run -m unittest'
+"""
report = "coverage report"
snekbox = """
gunicorn \
@@ -59,3 +65,10 @@ buildvenv = """
-f docker/venv.Dockerfile \
.
"""
+builddev = """
+ docker build \
+ -t pythondiscord/snekbox-venv:dev \
+ -f docker/venv.Dockerfile \
+ --build-arg DEV=1 \
+ .
+"""