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 a38b6ab commit 16e19a6Copy full SHA for 16e19a6
csharp/ql/integration-tests/all-platforms/conditional_compilation/test.py
@@ -1,6 +1,8 @@
1
-from create_database_utils import *
2
import os
3
4
-os.environ["CODEQL_EXTRACTOR_CSHARP_OPTION_TRAP_COMPRESSION"] = "none"
5
6
-run_codeql_database_create(['dotnet build /p:DefineConstants=A', 'dotnet build /p:DefineConstants=B'], lang="csharp")
+def test(codeql, csharp):
+ os.environ["CODEQL_EXTRACTOR_CSHARP_OPTION_TRAP_COMPRESSION"] = "none"
+ codeql.database.create(
7
+ command=["dotnet build /p:DefineConstants=A", "dotnet build /p:DefineConstants=B"]
8
+ )
0 commit comments