From cdd8774f27b59608bcefdbf64dafb6c597cf7d0b Mon Sep 17 00:00:00 2001 From: Alex Sorokoumov Date: Mon, 30 Mar 2026 22:57:45 -0700 Subject: [PATCH 1/2] INFRA-27784 Update setup-up version in CI --- .github/workflows/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 3a54b8b..4ecd00a 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -42,7 +42,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 with: python-version: ${{ matrix.python-version }} @@ -67,7 +67,7 @@ jobs: python-version: "3.10" - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 with: python-version: "3.14" From ccea2c2de52d0330960e4996d386cbee86d52267 Mon Sep 17 00:00:00 2001 From: Alex Sorokoumov Date: Tue, 31 Mar 2026 21:35:29 -0700 Subject: [PATCH 2/2] Fixup postgres tests --- tests/postgres_e2e_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/postgres_e2e_test.py b/tests/postgres_e2e_test.py index 62decdc..5da9768 100644 --- a/tests/postgres_e2e_test.py +++ b/tests/postgres_e2e_test.py @@ -41,7 +41,7 @@ def test_analyze(): with postgres_container(username, password, db) as (postgres_container_id, host_port): # Run the Otava analysis proc = subprocess.run( - ["uv", "run", "otava", "analyze", "aggregate_mem", "--branch", "trunk"], + ["uv", "run", "otava", "analyze", "aggregate_mem", "--branch", "trunk", "--since", "2025-01-01"], capture_output=True, text=True, timeout=600, @@ -139,7 +139,7 @@ def test_analyze_and_update_postgres(): with postgres_container(username, password, db) as (postgres_container_id, host_port): # Run the Otava analysis proc = subprocess.run( - ["uv", "run", "otava", "analyze", "aggregate_mem", "--branch", "trunk", "--update-postgres"], + ["uv", "run", "otava", "analyze", "aggregate_mem", "--branch", "trunk", "--update-postgres", "--since", "2025-01-01"], capture_output=True, text=True, timeout=600,