We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c035cee commit 5b7e8b0Copy full SHA for 5b7e8b0
tests/test_project.py
@@ -55,7 +55,7 @@ def test_subpackage(baked_withdevdeps):
55
subsubpackage.mkdir()
56
(subsubpackage / '__init__.py').write_text('FOO = "bar"', encoding="utf-8")
57
58
- build_output = run('f'{env_bin}python3 setup.py build', project_dir)
+ build_output = run([f'{env_bin}python3', 'setup.py', 'build'], project_dir)
59
assert build_output.returncode == 0
60
assert (project_dir / 'build' / 'lib' / 'my_python_package' / 'mysub' / '__init__.py').exists()
61
assert (project_dir / 'build' / 'lib' / 'my_python_package' / 'mysub' / 'mysub2' / '__init__.py').exists()
0 commit comments