@@ -125,7 +125,9 @@ def test_pixi_with_pixi_toml():
125125
126126
127127def test_pixi_with_pyproject_toml ():
128- content = (TEST_RESOURCES / "cowsay-pixi-pyproject.toml" ).read_text (encoding = "utf-8" )
128+ content = (TEST_RESOURCES / "cowsay-pixi-pyproject.toml" ).read_text (
129+ encoding = "utf-8"
130+ )
129131 env = (
130132 appose .pixi ()
131133 .content (content )
@@ -152,12 +154,16 @@ def test_pixi_with_environment_yml():
152154
153155def test_pixi_with_requirements_txt ():
154156 with pytest .raises (Exception ):
155- appose .pixi ().content (REQUIREMENTS_TXT_STUB ).base ("target/envs/content-pixi-requirements" ).build ()
157+ appose .pixi ().content (REQUIREMENTS_TXT_STUB ).base (
158+ "target/envs/content-pixi-requirements"
159+ ).build ()
156160
157161
158162def test_pixi_with_unrecognized ():
159163 with pytest .raises (Exception ):
160- appose .pixi ().content (UNRECOGNIZED ).base ("target/envs/content-pixi-unknown" ).build ()
164+ appose .pixi ().content (UNRECOGNIZED ).base (
165+ "target/envs/content-pixi-unknown"
166+ ).build ()
161167
162168
163169# ======================== MambaBuilder ========================
@@ -178,22 +184,30 @@ def test_mamba_with_environment_yml():
178184
179185def test_mamba_with_pyproject_toml ():
180186 with pytest .raises (Exception ):
181- appose .mamba ().content (PYPROJECT_TOML_STUB ).base ("target/envs/content-mamba-pyproject" ).build ()
187+ appose .mamba ().content (PYPROJECT_TOML_STUB ).base (
188+ "target/envs/content-mamba-pyproject"
189+ ).build ()
182190
183191
184192def test_mamba_with_requirements_txt ():
185193 with pytest .raises (Exception ):
186- appose .mamba ().content (REQUIREMENTS_TXT_STUB ).base ("target/envs/content-mamba-requirements" ).build ()
194+ appose .mamba ().content (REQUIREMENTS_TXT_STUB ).base (
195+ "target/envs/content-mamba-requirements"
196+ ).build ()
187197
188198
189199def test_mamba_with_pixi_toml ():
190200 with pytest .raises (Exception ):
191- appose .mamba ().content (PIXI_TOML_STUB ).base ("target/envs/content-mamba-pixi" ).build ()
201+ appose .mamba ().content (PIXI_TOML_STUB ).base (
202+ "target/envs/content-mamba-pixi"
203+ ).build ()
192204
193205
194206def test_mamba_with_unrecognized ():
195207 with pytest .raises (Exception ):
196- appose .mamba ().content (UNRECOGNIZED ).base ("target/envs/content-mamba-unknown" ).build ()
208+ appose .mamba ().content (UNRECOGNIZED ).base (
209+ "target/envs/content-mamba-unknown"
210+ ).build ()
197211
198212
199213# ======================== DynamicBuilder (appose.content) ========================
@@ -236,7 +250,9 @@ def test_content_with_pixi_toml():
236250
237251
238252def test_content_with_pyproject_toml ():
239- content = (TEST_RESOURCES / "cowsay-pixi-pyproject.toml" ).read_text (encoding = "utf-8" )
253+ content = (TEST_RESOURCES / "cowsay-pixi-pyproject.toml" ).read_text (
254+ encoding = "utf-8"
255+ )
240256 env = (
241257 appose .content (content )
242258 .base ("target/envs/content-dynamic-pyproject" )
0 commit comments