From bc31021ea981356b3060214b663761cf9cd23417 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Sun, 4 Aug 2019 10:24:26 +0700 Subject: [PATCH] phpmd: Disable test_cleancode_violation Disable PHPMessDetectorBearTest test test_cleancode_violation, as it is currently failing due to a minor text change in the error emitted by the linter. Related to https://github.com/coala/coala-bears/issues/2943 --- .ci/get_tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/get_tests.py b/.ci/get_tests.py index 23e705ab21..7bd68402ba 100755 --- a/.ci/get_tests.py +++ b/.ci/get_tests.py @@ -135,6 +135,10 @@ def get_pytest_deselected_tests(args, tests): if 'py34' in args: not_list.append('test_valid_async') + # https://github.com/coala/coala-bears/issues/2943 + if 'tests/php/PHPMessDetectorBearTest.py' in tests: + not_list.append('test_cleancode_violation') + return not_list