mirror of
https://github.com/github/codeql.git
synced 2026-02-17 15:33:45 +01:00
9 lines
222 B
Python
9 lines
222 B
Python
import os
|
|
|
|
|
|
def test(codeql, csharp):
|
|
codeql.database.create(command="dotnet pack -o nugetpackage")
|
|
assert os.path.isfile(
|
|
"nugetpackage/dotnet_pack.1.0.0.nupkg"
|
|
), "The NuGet package was not created."
|