From cde74b4043b829cce7a35d9e5005e2338de4def7 Mon Sep 17 00:00:00 2001 From: Jeremy Dubreil Date: Mon, 17 Oct 2016 12:22:48 -0700 Subject: [PATCH] [infer][test] always run the Buck integration test with the option --no-cache Reviewed By: jvillard Differential Revision: D4016191 fbshipit-source-id: 83c058a --- infer/tests/build_systems/build_integration_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/tests/build_systems/build_integration_tests.py b/infer/tests/build_systems/build_integration_tests.py index c8f60c8c7..ee1593b67 100755 --- a/infer/tests/build_systems/build_integration_tests.py +++ b/infer/tests/build_systems/build_integration_tests.py @@ -347,7 +347,7 @@ class BuildIntegrationTest(unittest.TestCase): target = '//infer/tests/codetoanalyze/java/infer:compile' test('buck', 'Buck', ROOT_DIR, - [{'compile': ['buck', 'build', target]}], + [{'compile': ['buck', 'build', '--no-cache', target]}], clean_commands=[['buck', 'clean']], available=lambda: is_tool_available(['buck', '--version']))