diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/pyproject.toml b/pyproject.toml index 04be1bf33..8368f80eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,9 @@ pep8-naming = "~=0.9"  pre-commit = "~=2.1"  taskipy = "~=1.7.0"  python-dotenv = "~=0.17.1" +pytest = "~=6.2.4" +pytest-cov = "~=2.12.1" +pytest-xdist = { version = "~=2.2.1", extras = ["psutil"] }  [build-system]  requires = ["poetry-core>=1.0.0"] @@ -58,6 +61,7 @@ lint = "pre-commit run --all-files"  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 = "coverage run -m unittest" +test-nocov = "pytest -n auto" +test = "pytest -n auto --cov-report= --cov"  html = "coverage html"  report = "coverage report" | 
