From 28a936b067abad5c3a3ff11b8a6b7a4bfdab1db8 Mon Sep 17 00:00:00 2001 From: Hubert Baniecki Date: Fri, 7 Jun 2024 11:11:54 +0200 Subject: [PATCH] [python] turn off github actions for windows due to an error --- .github/workflows/Python-check.yaml | 2 +- tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Python-check.yaml b/.github/workflows/Python-check.yaml index 3d9da71e..3c0ee08b 100644 --- a/.github/workflows/Python-check.yaml +++ b/.github/workflows/Python-check.yaml @@ -26,7 +26,7 @@ jobs: runs-on: ${{ matrix.platform }} strategy: matrix: - platform: [ubuntu-latest, macos-latest, windows-latest] + platform: [ubuntu-latest, macos-latest] # windows-latest python-version: ['3.8', '3.9', '3.10', '3.11'] steps: diff --git a/tox.ini b/tox.ini index 7634e0a2..7e8ef145 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,39,310,311}-{linux,macos,windows} +envlist = py{38,39,310,311}-{linux,macos} ; windows toxworkdir={toxinidir}/python/dalex/.tox temp_dir={toxinidir}/python/dalex/.tmp setupdir={toxinidir}/python/dalex/ @@ -16,7 +16,7 @@ python = PLATFORM = ubuntu-latest: linux macos-latest: macos - windows-latest: windows + ; windows-latest: windows [testenv] changedir = {toxinidir}/python/dalex/test