18
18
19
19
20
20
@_spec
21
- def tox_register_tox_env (register : ToxEnvRegister ) -> None : # noqa: ARG001
21
+ def tox_register_tox_env (register : ToxEnvRegister ) -> None :
22
22
"""
23
23
Register new tox environment type. You can register:
24
24
@@ -30,7 +30,7 @@ def tox_register_tox_env(register: ToxEnvRegister) -> None: # noqa: ARG001
30
30
31
31
32
32
@_spec
33
- def tox_add_option (parser : ToxParser ) -> None : # noqa: ARG001
33
+ def tox_add_option (parser : ToxParser ) -> None :
34
34
"""
35
35
Add a command line argument. This is the first hook to be called, right after the logging setup and config source
36
36
discovery.
@@ -40,7 +40,7 @@ def tox_add_option(parser: ToxParser) -> None: # noqa: ARG001
40
40
41
41
42
42
@_spec
43
- def tox_add_core_config (core_conf : ConfigSet , state : State ) -> None : # noqa: ARG001
43
+ def tox_add_core_config (core_conf : ConfigSet , state : State ) -> None :
44
44
"""
45
45
Called when the core configuration is built for a tox environment.
46
46
@@ -50,7 +50,7 @@ def tox_add_core_config(core_conf: ConfigSet, state: State) -> None: # noqa: AR
50
50
51
51
52
52
@_spec
53
- def tox_add_env_config (env_conf : EnvConfigSet , state : State ) -> None : # noqa: ARG001
53
+ def tox_add_env_config (env_conf : EnvConfigSet , state : State ) -> None :
54
54
"""
55
55
Called when configuration is built for a tox environment.
56
56
@@ -60,7 +60,7 @@ def tox_add_env_config(env_conf: EnvConfigSet, state: State) -> None: # noqa: A
60
60
61
61
62
62
@_spec
63
- def tox_before_run_commands (tox_env : ToxEnv ) -> None : # noqa: ARG001
63
+ def tox_before_run_commands (tox_env : ToxEnv ) -> None :
64
64
"""
65
65
Called before the commands set is executed.
66
66
@@ -69,7 +69,7 @@ def tox_before_run_commands(tox_env: ToxEnv) -> None: # noqa: ARG001
69
69
70
70
71
71
@_spec
72
- def tox_after_run_commands (tox_env : ToxEnv , exit_code : int , outcomes : list [Outcome ]) -> None : # noqa: ARG001
72
+ def tox_after_run_commands (tox_env : ToxEnv , exit_code : int , outcomes : list [Outcome ]) -> None :
73
73
"""
74
74
Called after the commands set is executed.
75
75
@@ -80,7 +80,7 @@ def tox_after_run_commands(tox_env: ToxEnv, exit_code: int, outcomes: list[Outco
80
80
81
81
82
82
@_spec
83
- def tox_on_install (tox_env : ToxEnv , arguments : Any , section : str , of_type : str ) -> None : # noqa: ARG001
83
+ def tox_on_install (tox_env : ToxEnv , arguments : Any , section : str , of_type : str ) -> None :
84
84
"""
85
85
Called before executing an installation command.
86
86
@@ -92,7 +92,7 @@ def tox_on_install(tox_env: ToxEnv, arguments: Any, section: str, of_type: str)
92
92
93
93
94
94
@_spec
95
- def tox_env_teardown (tox_env : ToxEnv ) -> None : # noqa: ARG001
95
+ def tox_env_teardown (tox_env : ToxEnv ) -> None :
96
96
"""
97
97
Called after a tox environment has been teared down.
98
98
0 commit comments