@@ -14,7 +14,7 @@ commands = [
1414 " python" ,
1515 " -m" ,
1616 " pytest" ,
17- { replace = " posargs" , extend = true , default = [
17+ { replace = " posargs" , default = [
1818 " --cov" ,
1919 " {env_site_packages_dir}{/}tox_uv" ,
2020 " --cov" ,
@@ -31,7 +31,7 @@ commands = [
3131 " --junitxml" ,
3232 " {work_dir}{/}junit.{env_name}.xml" ,
3333 " tests" ,
34- ] },
34+ ], extend = true },
3535 ],
3636 [
3737 " diff-cover" ,
@@ -64,6 +64,15 @@ description = "run type check on code base"
6464dependency_groups = [ " type" ]
6565commands = [ [ " ty" , " check" , " --output-format" , " concise" , " --error-on-warning" , " ." ] ]
6666
67+ [env .dev ]
68+ description = " generate a DEV environment"
69+ package = " editable"
70+ dependency_groups = [ " dev" ]
71+ commands = [
72+ [ " uv" , " pip" , " tree" ],
73+ [ " python" , " -c" , " import sys; print(sys.executable)" ],
74+ ]
75+
6776[env .meta ]
6877description = " run meta package tests to verify build and version injection"
6978package = " skip"
@@ -74,7 +83,7 @@ commands = [
7483 " python" ,
7584 " -m" ,
7685 " pytest" ,
77- { replace = " posargs" , extend = true , default = [
86+ { replace = " posargs" , default = [
7887 " --cov" ,
7988 " {tox_root}{/}meta" ,
8089 " --cov-config=pyproject.toml" ,
@@ -90,7 +99,7 @@ commands = [
9099 " {work_dir}{/}junit.{env_name}.xml" ,
91100 " meta/tests" ,
92101 " -v" ,
93- ] },
102+ ], extend = true },
94103 ],
95104 [
96105 " diff-cover" ,
@@ -116,12 +125,3 @@ base = [ "meta" ]
116125
117126[env ."meta-3 .14" ]
118127base = [ " meta" ]
119-
120- [env .dev ]
121- description = " generate a DEV environment"
122- package = " editable"
123- dependency_groups = [ " dev" ]
124- commands = [
125- [ " uv" , " pip" , " tree" ],
126- [ " python" , " -c" , " import sys; print(sys.executable)" ],
127- ]
0 commit comments