mirror of https://github.com/Nonannet/copapy.git
upd
This commit is contained in:
parent
e67ecd7c98
commit
997e797689
|
|
@ -67,11 +67,6 @@ jobs:
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
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 }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,8 @@ from pytest import approx
|
||||||
def function(c1, c2):
|
def function(c1, c2):
|
||||||
i1 = c1 * 3.3 + 5
|
i1 = c1 * 3.3 + 5
|
||||||
i2 = c2 * 5 + c1
|
i2 = c2 * 5 + c1
|
||||||
r1 = i1 + i2 * 55 / 4
|
#r1 = i1 + i2 * 55 / 4
|
||||||
|
r1 = i1 + i2 * 55 * 4
|
||||||
r2 = 4 * i2 + 5
|
r2 = 4 * i2 + 5
|
||||||
|
|
||||||
return i1, i2, r1, r2
|
return i1, i2, r1, r2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue