mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
10 lines
267 B
Python
10 lines
267 B
Python
import pytest
|
|
|
|
@pytest.mark.flaky(rerun_filter=lambda args*: runs_on.macos)
|
|
def test1(codeql, csharp):
|
|
codeql.database.create()
|
|
|
|
@pytest.mark.flaky(rerun_filter=lambda args*: runs_on.macos)
|
|
def test2(codeql, csharp):
|
|
codeql.database.create(build_mode="none")
|