diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2017-08-24 13:46:46 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2017-08-24 13:46:46 -0700 |
commit | 1f0bd1285130503000ef2cb615e6ecb01aaa90fd (patch) | |
tree | 65fba2c59a34d3da84cc6de5a7604dad92e92698 /appveyor.yml | |
parent | 321a1c9dc0bb2205feb1bb9fd079546403aa852f (diff) | |
download | flatbuffers-1f0bd1285130503000ef2cb615e6ecb01aaa90fd.tar.gz flatbuffers-1f0bd1285130503000ef2cb615e6ecb01aaa90fd.tar.bz2 flatbuffers-1f0bd1285130503000ef2cb615e6ecb01aaa90fd.zip |
Disabled numpy test in appveyor due to timeout.
It pulls in a LOT of dependencies, this will need to be done better.
Change-Id: Ib27effead194f6836facca01e9454a6037ad837a
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 1fffeada..d9dd5f1c 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?? |