diff options
| author | 2020-03-30 11:54:50 +0200 | |
|---|---|---|
| committer | 2020-03-30 11:54:50 +0200 | |
| commit | fb2de332c8b95c04e1ce7b41cd8336b594d13524 (patch) | |
| tree | 18b44c5b1ad5cea36a8f179fae9c301263e61b11 /Pipfile | |
| parent | Add tests for `HushDurationConverter`. (diff) | |
| parent | Merge pull request #849 from ks129/webhook-match (diff) | |
Merge branch 'master' into hush-cog
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 5 | 
1 files changed, 2 insertions, 3 deletions
@@ -31,17 +31,16 @@ flake8-import-order = "~=0.18"  flake8-string-format = "~=0.2"  flake8-tidy-imports = "~=4.0"  flake8-todo = "~=0.7" +pep8-naming = "~=0.9"  pre-commit = "~=2.1" -safety = "~=1.8"  unittest-xml-reporting = "~=3.0" -dodgy = "~=0.1"  [requires]  python_version = "3.8"  [scripts]  start = "python -m bot" -lint = "python -m flake8" +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"  |