File tree Expand file tree Collapse file tree 3 files changed +7
-51
lines changed Expand file tree Collapse file tree 3 files changed +7
-51
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -59,11 +59,12 @@ multiline-quotes = "single"
5959
6060[tool .poetry .group .dev .dependencies ]
6161toml = " ^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"
6266yapf = " ^0.32.0"
67+ pyright = " ^1.1.302"
6368pytest = " ^7.2.2"
6469pytest-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"
Original file line number Diff line number Diff line change 55from invoke import Context , task
66from invoke .exceptions import UnexpectedExit
77
8- import monkey_patch_invoke as _ # noqa: F401
9-
108
119def get_pep8_compliant_name (project_name : str ) -> str :
1210 return project_name .replace ('-' , '_' )
@@ -21,7 +19,7 @@ def get_project_path():
2119
2220@task
2321def 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
You can’t perform that action at this time.
0 commit comments