Remove FocusConvey check (#41165)

This commit is contained in:
Dimitris Sotirakis 2021-11-09 13:38:51 +02:00 committed by GitHub
parent b4f00d6312
commit ad4fc4d87e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 15 deletions

View File

@ -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
...

View File

@ -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),
],
}