From 564c6fc558e666a0bab926e2894a6cc29acf5609 Mon Sep 17 00:00:00 2001 From: Lena Kashtelyan Date: Wed, 28 Aug 2019 11:03:12 -0700 Subject: [PATCH] Add check for master Ax + stable BoTorch (#161) Summary: This is a check for when we are looking to release a stable version of Ax, since it needs to be compatible with stable BoTorch Pull Request resolved: https://github.com/facebook/Ax/pull/161 Test Plan: https://travis-ci.com/facebook/Ax/builds/124948947, 889.6 is the new test Reviewed By: kkashin Differential Revision: D17095884 Pulled By: lena-kashtelyan fbshipit-source-id: 4c523652fce96c51f6bf65cfdec533ed862c0d76 --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index ad3f369c205..a2da454d4f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,6 +55,15 @@ jobs: - sphinx-build -WT sphinx/source sphinx/build # since -W flag breaks on first error, re-run without it to print all - sphinx-build sphinx/source sphinx/build + - name: "Build with Stable PyTorch (for pushing new release)" + python: "3.7" + env: ALLOW_FAILURE=true + install: + - pip install cython numpy + - pip install botorch + - pip install -q -e .[dev,mysql,notebook] + script: + - pytest -ra - name: "Docs: Sphinx Coverage (Python 3.6)" python: "3.6" # Allow failure for now, until missing modules are added to documentation.