Skip to content

Commit 5b7e8b0

Browse files
committed
Use list
1 parent c035cee commit 5b7e8b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_subpackage(baked_withdevdeps):
5555
subsubpackage.mkdir()
5656
(subsubpackage / '__init__.py').write_text('FOO = "bar"', encoding="utf-8")
5757

58-
build_output = run('f'{env_bin}python3 setup.py build', project_dir)
58+
build_output = run([f'{env_bin}python3', 'setup.py', 'build'], project_dir)
5959
assert build_output.returncode == 0
6060
assert (project_dir / 'build' / 'lib' / 'my_python_package' / 'mysub' / '__init__.py').exists()
6161
assert (project_dir / 'build' / 'lib' / 'my_python_package' / 'mysub' / 'mysub2' / '__init__.py').exists()

0 commit comments

Comments
 (0)