Ignore deps starting with uv when finding uv version (#492)

Fixes: #489
This commit is contained in:
Kevin Stillhammer
2025-07-18 08:10:43 +02:00
committed by GitHub
parent 05273c154d
commit 7edac99f96
4 changed files with 15 additions and 4 deletions

View File

@ -0,0 +1,10 @@
import { getUvVersionFromFile } from "../../src/version/resolve";
import { expect, test } from "@jest/globals";
test("ignores dependencies starting with uv", async () => {
const parsedVersion = getUvVersionFromFile(
"__tests__/fixtures/uv-in-requirements-txt-project/requirements.txt",
);
expect(parsedVersion).toBe("0.6.17");
});