diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 71b54021c3b..358461b388b 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -41,10 +41,10 @@ jobs: cache-dependency-path: ".github/workflows/test-windows.yml" - name: Print build system information - run: python .github/workflows/system-info.py + run: python3 .github/workflows/system-info.py - - name: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml - run: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml + - name: python3 -m pip install wheel pytest pytest-cov pytest-timeout defusedxml + run: python3 -m pip install wheel pytest pytest-cov pytest-timeout defusedxml - name: Install dependencies id: install diff --git a/winbuild/build.rst b/winbuild/build.rst index af7c558cf67..71666977127 100644 --- a/winbuild/build.rst +++ b/winbuild/build.rst @@ -90,8 +90,8 @@ Some binary dependencies (e.g. ``fribidi.dll``) will be stored in the ``winbuild\build\bin`` directory; this directory should be added to ``PATH`` before running tests. -Build and install Pillow, then run ``python -m pytest Tests`` -from the root Pillow directory. +Build and install Pillow, then run ``python3 -m pytest`` from the root Pillow +directory. Example -------