diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56cfe50478..b5ad24e7bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -190,7 +190,10 @@ jobs: working-directory: tests run: | echo "Launching httpbin" - pip install httpbin + # Current decorator (>= 5) is incompatible with Python 2 which we + # still use under in some builds, so explicitly use a version which + # is known to work. + pip install decorator==4.4.2 httpbin python -m httpbin.core 2>&1 >httpbin.log & export WX_TEST_WEBREQUEST_URL=http://localhost:5000