Skip to content

Commit

Permalink
reduce test coverage to speed up
Browse files Browse the repository at this point in the history
  • Loading branch information
metapage CI Robot committed Jan 8, 2025
1 parent 075ab7a commit 3ccc4d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/worker/test/src/run-tests-in-astral.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ const getRepresentativeMetapageVersions = async () :Promise<string[]> => {
let versions = await getMetapageVersions();
// Only most recent x.y versions
// versions are already sorted
const minorLimit = 0;
const subset: string[] = [];
let currentMajor = 10000;
let currentMinor = 10000;
const minorLimit = 3;
let minors = 0;
for (const version of versions) {
const [x, y] = version.split(".").map(v => parseInt(v));
Expand Down

0 comments on commit 3ccc4d4

Please sign in to comment.