From e5d0f2fa72acd2838c8c897985bf591a9558abfe Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Tue, 14 Apr 2026 13:03:19 +0000 Subject: [PATCH 1/3] Initial plan From 0229a04d2957f535f13e0965f050121043b2ec78 Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Tue, 14 Apr 2026 13:13:15 +0000 Subject: [PATCH 2/3] fix: enable coverage upload in conda test workflow Co-authored-by: ilaflott <6273252+ilaflott@users.noreply.github.com> --- .github/workflows/create_test_conda_env.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_test_conda_env.yml b/.github/workflows/create_test_conda_env.yml index a22976a..4d26827 100644 --- a/.github/workflows/create_test_conda_env.yml +++ b/.github/workflows/create_test_conda_env.yml @@ -67,11 +67,11 @@ jobs: - name: Install fremorizer run: | - pip install . + pip install --no-deps --no-build-isolation . - name: Run pytest run: | - pytest --cov=fremorizer --cov-config=coveragerc fremorizer/tests/ -v + pytest --cov=fremorizer --cov-config=coveragerc --cov-report=xml fremorizer/tests/ -v - name: Upload Coverage to Codecov if: ${{ always() }} From 9c55963867069dc5be77a3b48b1afa206dffb515 Mon Sep 17 00:00:00 2001 From: "Ian L." <6273252+ilaflott@users.noreply.github.com> Date: Tue, 14 Apr 2026 09:22:45 -0400 Subject: [PATCH 3/3] Update create_test_conda_env.yml --- .github/workflows/create_test_conda_env.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_test_conda_env.yml b/.github/workflows/create_test_conda_env.yml index 4d26827..82fce44 100644 --- a/.github/workflows/create_test_conda_env.yml +++ b/.github/workflows/create_test_conda_env.yml @@ -67,7 +67,7 @@ jobs: - name: Install fremorizer run: | - pip install --no-deps --no-build-isolation . + pip install . - name: Run pytest run: |