File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ def pytest_sessionstart(session: pytest.Session) -> None:
2626
2727 try :
2828 result = subprocess .run (
29- shlex .split (f"uvx pdm build -v --no-sdist --dest { deptry_wheel_path } " , posix = sys .platform != "win32" ),
29+ shlex .split (f"uv build --verbose --wheel --out-dir { deptry_wheel_path } " , posix = sys .platform != "win32" ),
3030 capture_output = True ,
3131 text = True ,
3232 check = True ,
3333 )
34- print ("pdm build output: %s" , result .stdout ) # noqa: T201
35- print ("pdm build errors: %s" , result .stderr ) # noqa: T201
34+ print (f"uv build output: { result .stdout } " ) # noqa: T201
35+ print (f"uv build errors: { result .stderr } " ) # noqa: T201
3636 except subprocess .CalledProcessError as e :
37- print ("Output: %s" , e .output ) # noqa: T201
38- print ("Errors: %s" , e .stderr ) # noqa: T201
37+ print (f "Output: { e .output } " ) # noqa: T201
38+ print (f "Errors: { e .stderr } " ) # noqa: T201
3939 raise
4040
4141
You can’t perform that action at this time.
0 commit comments