mirror of
https://github.com/github/codeql.git
synced 2026-05-23 15:47:11 +02:00
8 lines
218 B
Python
8 lines
218 B
Python
import os
|
|
|
|
|
|
def test(codeql, csharp):
|
|
artifacts = "bin/Temp"
|
|
codeql.database.create(command=f"dotnet publish -o {artifacts}")
|
|
assert os.path.isdir(artifacts), "The publish artifact folder was not created."
|