ci: setup testing for linux, macos and windows platforms

- fix ci for windows: remove bash if/fi
- exlucde failing test from windows
- enable scheduled tests
- use --use-pep517 for pip install: avoid deprecation message
- exlcude windows-latest and pypy-3.9 since there is a problem with installing (missing zlib.h)
This commit is contained in:
scito
2022-12-18 21:45:32 +01:00
committed by Roland Kurmann
parent ca4a0bc7d2
commit 7af631ff1e
4 changed files with 62 additions and 14 deletions

View File

@@ -181,11 +181,11 @@ eval "$cmd"
$PIP --version
cmd="$PIP install -U -r requirements.txt"
cmd="$PIP install --use-pep517 -U -r requirements.txt"
if $interactive ; then askContinueYn "$cmd"; fi
eval "$cmd"
cmd="$PIP install -U -r requirements-dev.txt"
cmd="$PIP install --use-pep517 -U -r requirements-dev.txt"
if $interactive ; then askContinueYn "$cmd"; fi
eval "$cmd"