diff --git a/appveyor.yml b/appveyor.yml
index 1fffeadac206d2b26d25748a3c4c739064f0845a..d9dd5f1c551d6a5fad8f6516c54efc39309e5ba5 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -62,9 +62,11 @@ test_script:
   - pip install ../python
   - rem "testing without installing Numpy"
   - python py_test.py 0 0 0
-  - rem "testing after installing Numpy"
-  - conda install --yes numpy
-  - python py_test.py 0 0 0
+  - rem "testing after installing Numpy - disabled"
+  # FIXME: This has a LOT of unnecessary dependencies and makes the tests fail
+  # with timeouts.
+  # - conda install --yes numpy
+  # - python py_test.py 0 0 0
   - rem "---------------- C# -----------------"
   # Have to compile this here rather than in "build" above because AppVeyor only
   # supports building one project??