diff options
| author | 2020-11-21 09:38:36 +0200 | |
|---|---|---|
| committer | 2020-11-21 09:38:36 +0200 | |
| commit | 7c218c23c82169bca518b6c01b281cce6b5ad43c (patch) | |
| tree | aa14e1dbbec945330f8dacb507d8a6f63cd08e95 /Pipfile | |
| parent | Catch not found exception in scheduler (diff) | |
| parent | Merge pull request #1287 from python-discord/help-channel-msg (diff) | |
Merge branch 'master' into bug-fixes
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -26,6 +26,7 @@ requests = "~=2.22" sentry-sdk = "~=0.14" sphinx = "~=2.2" statsd = "~=3.3" +emoji = "~=0.6" [dev-packages] coverage = "~=5.0" @@ -39,7 +40,7 @@ flake8-tidy-imports = "~=4.0" flake8-todo = "~=0.7" pep8-naming = "~=0.9" pre-commit = "~=2.1" -unittest-xml-reporting = "~=3.0" +coveralls = "~=2.1" [requires] python_version = "3.8" @@ -48,8 +49,8 @@ python_version = "3.8" start = "python -m bot" lint = "pre-commit run --all-files" precommit = "pre-commit install" -build = "docker build -t pythondiscord/bot:latest -f Dockerfile ." -push = "docker push pythondiscord/bot:latest" +build = "docker build -t ghcr.io/python-discord/bot:latest -f Dockerfile ." +push = "docker push ghcr.io/python-discord/bot:latest" test = "coverage run -m unittest" html = "coverage html" report = "coverage report" |