Skip to content

Commit 0f671f8

Browse files
No build isolation for UFL (#967)
* No build isolation for UFL * ruff updates --------- Co-authored-by: Matthew Scroggs <[email protected]>
1 parent 5cfc881 commit 0f671f8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/intel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
pip -v install --no-build-isolation .
5555
- name: Run units tests
5656
run: |
57-
pip -v install --no-build-isolation git+https://github.com/FEniCS/ufl.git
57+
pip -v install git+https://github.com/FEniCS/ufl.git
5858
pytest -n auto --durations 20 test/
5959
- name: Run Python demos
6060
run: |

test/test_quadrature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
)
2323
@pytest.mark.parametrize("order", range(9))
2424
def test_cell_quadrature(celltype, order):
25-
Qpts, Qwts = basix.make_quadrature(celltype[0], order)
25+
_Qpts, Qwts = basix.make_quadrature(celltype[0], order)
2626
assert np.isclose(sum(Qwts), celltype[1])
2727

2828

test/test_tensor_products.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_tensor_product_factorisation_quadrilateral(degree):
7373

7474
# Quadrature degree
7575
Q = 2 * P + 2
76-
points, w = basix.make_quadrature(cell_type, Q)
76+
points, _w = basix.make_quadrature(cell_type, Q)
7777

7878
data = element.tabulate(1, points)
7979
dphi_x = data[1, :, :, 0]
@@ -137,7 +137,7 @@ def test_tensor_product_factorisation_hexahedron(degree):
137137
assert points.shape[0] == (P + 2) * (P + 2) * (P + 2)
138138

139139
cell1d = element0.cell_type
140-
points, w = basix.make_quadrature(cell1d, Q)
140+
points, _w = basix.make_quadrature(cell1d, Q)
141141
data = element0.tabulate(1, points)
142142
phi0 = data[0, :, :, 0]
143143
dphi0 = data[1, :, :, 0]

0 commit comments

Comments
 (0)