Merge branch 'no-in-tree-build' into 'development'

in-tree-build not supported anymore on GitHub Actions

See merge request damask/DAMASK!580
This commit is contained in:
Martin Diehl 2022-05-12 12:54:29 +00:00
commit 14a7d3fc41
1 changed files with 2 additions and 2 deletions

View File

@ -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: