Skip to content

Commit

Permalink
Testing: Disabling PyQt4 for now in Appveyor because it's failing
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Sep 20, 2016
1 parent d3201ad commit 19c8d8e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
16 changes: 8 additions & 8 deletions appveyor.yml
Expand Up @@ -12,15 +12,15 @@ environment:
PYTHON_ARCH: "64"
USE_QT_API: "PyQt5"

- PYTHON: "C:\\Python35_64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
USE_QT_API: "PyQt4"
#- PYTHON: "C:\\Python35_64"
# PYTHON_VERSION: "3.5"
# PYTHON_ARCH: "64"
# USE_QT_API: "PyQt4"

- PYTHON: "C:\\Python27_64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
USE_QT_API: "PyQt4"
#- PYTHON: "C:\\Python27_64"
# PYTHON_VERSION: "2.7"
# PYTHON_ARCH: "64"
# USE_QT_API: "PyQt4"

install:
- powershell .\\continuous_integration\\appveyor\\install.ps1
Expand Down
20 changes: 8 additions & 12 deletions continuous_integration/appveyor/modules_test.bat
Expand Up @@ -24,6 +24,14 @@ for /r "%SPYDER%" %%f in (*.py) do (
:: We don't want py.test's to be run here
echo --- NOT testing %%f ---
echo.
) else if not "!file:site\=!"=="!file!" (
:: We can't test our site files
echo --- NOT testing %%f ---
echo.
) else if not "!file:ipython\=!"=="!file!" (
:: We can't test these files outside of our IPython console
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDER%\utils\qthelpers.py" (
echo --- NOT testing %%f ---
echo.
Expand Down Expand Up @@ -54,18 +62,6 @@ for /r "%SPYDER%" %%f in (*.py) do (
:: We have to investigate this failure!
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDER%\utils\ipython\start_kernel.py" (
:: It can't be tested outside of a Qtconsole
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDER%\utils\ipython\spyder_kernel.py" (
:: It can't be tested outside of a Qtconsole
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDER%\utils\site\sitecustomize.py" (
:: It can't be tested outside of a Python console
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDER%\widgets\editor.py" (
:: This is making AppVeyor to time out!
echo --- NOT testing %%f ---
Expand Down

0 comments on commit 19c8d8e

Please sign in to comment.