Skip to content

Commit

Permalink
Revert a specific commit in Kivy, as looks the offending one.
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Nov 28, 2023
1 parent a461fe3 commit 9f456be
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ci/windows_ci.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ function Test-kivy() {

python -m pip config set install.find-links "$(pwd)\dist"

git clone --depth 1 https://github.com/kivy/kivy.git kivy_src
git clone https://github.com/kivy/kivy.git kivy_src

cd kivy_src
git revert adb8344227d3095be026ad27fa9c07e130e7418a -n # revert Kivy PR #8342
cd ..

# use the current kivy_deps just built, not the older version specified in the reqs
((get-content -Path kivy_src/pyproject.toml -Raw) -replace "kivy_deps.$env:PACKAGE_TARGET`_dev~.+;","kivy_deps.$env:PACKAGE_TARGET`_dev;") | set-content -Path kivy_src/pyproject.toml
((get-content -Path kivy_src/pyproject.toml -Raw) -replace "kivy_deps.$env:PACKAGE_TARGET~.+;","kivy_deps.$env:PACKAGE_TARGET;") | set-content -Path kivy_src/pyproject.toml
Expand All @@ -62,7 +67,7 @@ function Test-kivy() {

echo "[run]`nplugins = kivy.tools.coverage`n" > .coveragerc

python -m pytest . --deselect=test_clipboard.py::test_clipboard_copy_paste_with_emoji
python -m pytest .

}

Expand Down

0 comments on commit 9f456be

Please sign in to comment.