Skip to content

Commit ec32f85

Browse files
committed
Bump up dependencies
1 parent 0d3a79f commit ec32f85

File tree

3 files changed

+7
-51
lines changed

3 files changed

+7
-51
lines changed

monkey_patch_invoke.py

Lines changed: 0 additions & 43 deletions
This file was deleted.

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,12 @@ multiline-quotes = "single"
5959

6060
[tool.poetry.group.dev.dependencies]
6161
toml = "^0.10.2"
62+
types-toml = "^0.10.8.6"
63+
invoke = "^2.0.0"
64+
types-invoke = "^2.0.0.6"
65+
ruff = "^0.0.261"
6266
yapf = "^0.32.0"
67+
pyright = "^1.1.302"
6368
pytest = "^7.2.2"
6469
pytest-cov = "^4.0.0"
65-
invoke = "^1.7.3"
66-
ruff = "^0.0.199"
67-
types-invoke = "^1.7.3.16"
68-
types-toml = "^0.10.8.5"
69-
pyright = "^1.1.296"
70+
pytest-sugar = "^0.9.7"

tasks.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
from invoke import Context, task
66
from invoke.exceptions import UnexpectedExit
77

8-
import monkey_patch_invoke as _ # noqa: F401
9-
108

119
def get_pep8_compliant_name(project_name: str) -> str:
1210
return project_name.replace('-', '_')
@@ -21,7 +19,7 @@ def get_project_path():
2119

2220
@task
2321
def test(context: Context):
24-
context.run('pytest . --cov=. --cov-report=xml', pty=True)
22+
context.run('pytest . -s --cov=. --cov-report=xml', pty=True)
2523

2624

2725
@task

0 commit comments

Comments
 (0)