From 997e79768901ddc3597274f1edad6d2bf3f118e1 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Tue, 7 Oct 2025 23:21:57 +0200 Subject: [PATCH] upd --- .github/workflows/ci.yml | 5 ----- tests/test_coparun_module.py | 3 ++- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eee15ea..884ff01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,11 +67,6 @@ jobs: - name: Check out code uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 - with: - name: stencil-object-files - path: src/copapy/obj - - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: diff --git a/tests/test_coparun_module.py b/tests/test_coparun_module.py index 135db3d..5ec360f 100644 --- a/tests/test_coparun_module.py +++ b/tests/test_coparun_module.py @@ -5,7 +5,8 @@ from pytest import approx def function(c1, c2): i1 = c1 * 3.3 + 5 i2 = c2 * 5 + c1 - r1 = i1 + i2 * 55 / 4 + #r1 = i1 + i2 * 55 / 4 + r1 = i1 + i2 * 55 * 4 r2 = 4 * i2 + 5 return i1, i2, r1, r2