Files
codeql/rust/integration-tests/hello-project/test_project.py
Paolo Tranquilli aae33db137 Rust: add basic integration tests
This adds testing of well-formed rust projects and workspaces, using
both `Cargo.toml` and `rust-project.json` manifests.
2024-09-17 11:23:39 +02:00

8 lines
269 B
Python

def test_cargo(codeql, rust, manifests, check_source_archive):
manifests.select("Cargo.toml")
codeql.database.create()
def test_rust_project(codeql, rust, manifests, check_source_archive):
manifests.select("rust-project.json")
codeql.database.create()