diff options
author | 2021-10-05 22:42:24 +0100 | |
---|---|---|
committer | 2021-10-05 22:42:24 +0100 | |
commit | 9baf7bdb5d550eca735d6b3bcd5578126831d23a (patch) | |
tree | c45e74563ee82dffd344d63a4371989c99946464 /pyproject.toml | |
parent | Use `isinstance` instead of `hasattr` to determine if `Member` (diff) | |
parent | Merge pull request #1854 from python-discord/minor-changes-to-typing-patch (diff) |
Merge branch 'main' into ignore-infra-mods-errors
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 23cbba19b..4431a41c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,8 @@ precommit = "pre-commit install" build = "docker build -t ghcr.io/python-discord/bot:latest -f Dockerfile ." push = "docker push ghcr.io/python-discord/bot:latest" test-nocov = "pytest -n auto" -test = "pytest -n auto --cov-report= --cov" +test = "pytest -n auto --cov-report= --cov --ff" +retest = "pytest -n auto --cov-report= --cov --lf" html = "coverage html" report = "coverage report" |