From ad4fc4d87e8050f06cba5a62d1d10b934bfadcea Mon Sep 17 00:00:00 2001 From: Dimitris Sotirakis Date: Tue, 9 Nov 2021 13:38:51 +0200 Subject: [PATCH] Remove FocusConvey check (#41165) --- .drone.yml | 14 +------------- scripts/drone/steps/lib.star | 2 -- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/.drone.yml b/.drone.yml index 31fb849809b..4b46e7ef26e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -75,7 +75,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition oss depends_on: - lint-backend @@ -346,7 +345,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition oss depends_on: - lint-backend @@ -798,7 +796,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition oss depends_on: - lint-backend @@ -1175,7 +1172,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition enterprise depends_on: - lint-backend @@ -1288,7 +1284,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-backend-enterprise2 - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition enterprise2 depends_on: - lint-backend @@ -1730,7 +1725,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition oss depends_on: - lint-backend @@ -2096,7 +2090,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition enterprise depends_on: - lint-backend @@ -2209,7 +2202,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-backend-enterprise2 - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition enterprise2 depends_on: - lint-backend @@ -2648,7 +2640,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition oss depends_on: - lint-backend @@ -2986,7 +2977,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-frontend - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition enterprise depends_on: - lint-backend @@ -3097,7 +3087,6 @@ steps: image: grafana/build-container:1.4.4 name: lint-backend-enterprise2 - commands: - - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1' - ./bin/grabpl test-backend --edition enterprise2 depends_on: - lint-backend @@ -3441,6 +3430,5 @@ kind: secret name: drone_token --- kind: signature -hmac: 746a9f310520cd57b0a464b91049565aa99138fbec92568cadd99d51871e8e56 - +hmac: 7f5e6041ab60e051c2dd6858adff840fa77e57ac9a7befc73aaab28f588c2318 ... diff --git a/scripts/drone/steps/lib.star b/scripts/drone/steps/lib.star index ec98f0b2a43..d427733fe20 100644 --- a/scripts/drone/steps/lib.star +++ b/scripts/drone/steps/lib.star @@ -374,8 +374,6 @@ def test_backend_step(edition): 'lint-backend', ], 'commands': [ - # First make sure that there are no tests with FocusConvey - '[ $(grep FocusConvey -R pkg | wc -l) -eq "0" ] || exit 1', './bin/grabpl test-backend --edition {}'.format(edition), ], }