From ca18cbf886af6eee5cad6539523a5c3013db1d9c Mon Sep 17 00:00:00 2001 From: Sam Zhou Date: Mon, 6 Jan 2020 07:16:29 -0800 Subject: [PATCH] Unbreak sapp CI build (#225) Summary: `requirements.txt` is removed in [this commit](https://github.com/facebook/pyre-check/commit/4288a9500753f016b0e36a9e69234d80841ec3aa) The requirements are already automatically installed during setup. Therefore, we don't need to run `pip install -r requirements.txt`, and we can simply remove the line in CI config. Pull Request resolved: https://github.com/facebook/pyre-check/pull/225 Differential Revision: D19286310 Pulled By: gbleaney fbshipit-source-id: d64a75bc45bd19376929edd377be5ce83e1e2887 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1c7d2e09812..04b7dea6ad6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,5 +17,4 @@ jobs: install: scripts/travis_install_build_dependencies.sh script: ./scripts/setup.sh --local - name: "Build and run tests for sapp" - install: pip install -r tools/sapp/requirements.txt script: cd tools/sapp && python3 setup.py test