Skip to content

Commit

Permalink
Merge pull request spyder-ide#3261 from ccordoba12/fix-AV-timeout
Browse files Browse the repository at this point in the history
Fix timeouts in AppVeyor
  • Loading branch information
ccordoba12 authored Jun 27, 2016
2 parents 360f9c3 + 5078b74 commit 0ebac40
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion continuous_integration/appveyor/modules_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ for /r "%SPYDERLIB%" %%f in (*.py) do (
echo --- NOT testing %%f ---
echo.
) else if not "!file:app\=!"=="!file!" (
:: Most files in this dir can't be ran alone
echo --- NOT testing %%f ---
echo.
) else if not "!file:plugins\=!"=="!file!" (
:: Plugins can't be ran independently
echo --- NOT testing %%f ---
echo.
) else if not "!file:qt=!"=="!file!" (
) else if not "!file:tests\=!"=="!file!" (
:: We don't want py.test's to be run here
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\utils\qthelpers.py" (
Expand All @@ -40,21 +43,31 @@ for /r "%SPYDERLIB%" %%f in (*.py) do (
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\utils\introspection\module_completion.py" (
:: This is failing randomly
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\utils\introspection\plugin_client.py" (
:: We have to investigate this failure!
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\widgets\editor.py" (
:: This is making AppVeyor to time out!
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\widgets\externalshell\systemshell.py" (
:: This is failing randomly
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\widgets\externalshell\inputhooks.py" (
:: It can't be tested outside of a Python console
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\widgets\externalshell\sitecustomize.py" (
:: It can't be tested outside of a Python console
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\widgets\externalshell\start_ipython_kernel.py" (
:: It can't be tested outside of a Qtconsole
echo --- NOT testing %%f ---
echo.
) else if "%%f"=="%SPYDERLIB%\widgets\sourcecode\codeeditor.py" (
Expand Down

0 comments on commit 0ebac40

Please sign in to comment.