From fce600f02b8abaa1638c8314c1081145c0b99402 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Thu, 12 May 2022 00:39:19 +0200 Subject: [PATCH] in tree build not supported anymore --- .github/workflows/Python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Python.yml b/.github/workflows/Python.yml index 15e04fb18..2f2a5d111 100644 --- a/.github/workflows/Python.yml +++ b/.github/workflows/Python.yml @@ -42,13 +42,13 @@ jobs: - name: Install and run unit tests (Unix) if: runner.os != 'Windows' run: | - python -m pip install ./python --no-deps -vv --use-feature=in-tree-build + python -m pip install ./python --no-deps -vv COLUMNS=256 pytest python - name: Install and run unit tests (Windows) if: runner.os == 'Windows' run: | - python -m pip install ./python --no-deps -vv --use-feature=in-tree-build + python -m pip install ./python --no-deps -vv pytest python -k 'not XDMF' apt: