File tree 3 files changed +7
-51
lines changed
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"
59
59
60
60
[tool .poetry .group .dev .dependencies ]
61
61
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"
62
66
yapf = " ^0.32.0"
67
+ pyright = " ^1.1.302"
63
68
pytest = " ^7.2.2"
64
69
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"
Original file line number Diff line number Diff line change 5
5
from invoke import Context , task
6
6
from invoke .exceptions import UnexpectedExit
7
7
8
- import monkey_patch_invoke as _ # noqa: F401
9
-
10
8
11
9
def get_pep8_compliant_name (project_name : str ) -> str :
12
10
return project_name .replace ('-' , '_' )
@@ -21,7 +19,7 @@ def get_project_path():
21
19
22
20
@task
23
21
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 )
25
23
26
24
27
25
@task
You can’t perform that action at this time.
0 commit comments