Skip to content

Commit 044781e

Browse files
committed
Use publish instead of build to skip rebuilding
1 parent c6d7749 commit 044781e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def pytest_configure(config):
4444

4545
fw = "net5.0" if runtime_opt == "netcore" else "netstandard2.0"
4646

47-
check_call(["dotnet", "build", "-f", fw, "-o", bin_path, test_proj_path])
47+
check_call(["dotnet", "publish", "-f", fw, "-o", bin_path, test_proj_path])
4848

4949
sys.path.append(bin_path)
5050

0 commit comments

Comments
 (0)