From 56f2732bbb99d0cd6aad2d962b82113622b4abdd Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 17 Sep 2024 15:35:52 +0200 Subject: [PATCH] Rust: ignore failing DB-CHECK --- rust/integration-tests/hello-workspace/test_workspace.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rust/integration-tests/hello-workspace/test_workspace.py b/rust/integration-tests/hello-workspace/test_workspace.py index d03c4f67e26..f3503e7cefa 100644 --- a/rust/integration-tests/hello-workspace/test_workspace.py +++ b/rust/integration-tests/hello-workspace/test_workspace.py @@ -1,3 +1,8 @@ +import pytest + +# currently the DB-check fails on actions because of loading files multiple times and assiging multiple locations +# see https://github.com/github/codeql-team/issues/3365 +@pytest.mark.ql_test("DB-CHECK", xfail="maybe") def test_cargo(codeql, rust, manifests, check_source_archive): manifests.select("Cargo.toml") codeql.database.create()