CI: Remove grabpl integration-tests (#61920)

These tests can also be run without it.
This commit is contained in:
Horst Gutmann 2023-01-23 16:00:31 +01:00 committed by GitHub
parent 8ddedf475b
commit 739fcf1796
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 7 deletions

View File

@ -3183,7 +3183,9 @@ steps:
name: mysql-integration-tests name: mysql-integration-tests
- commands: - commands:
- dockerize -wait tcp://redis:6379/0 -timeout 120s - dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests - go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on: depends_on:
- wire-install - wire-install
environment: environment:
@ -3192,7 +3194,9 @@ steps:
name: redis-integration-tests name: redis-integration-tests
- commands: - commands:
- dockerize -wait tcp://memcached:11211 -timeout 120s - dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests - go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on: depends_on:
- wire-install - wire-install
environment: environment:
@ -5831,7 +5835,9 @@ steps:
name: mysql-integration-tests name: mysql-integration-tests
- commands: - commands:
- dockerize -wait tcp://redis:6379/0 -timeout 120s - dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests - go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on: depends_on:
- wire-install - wire-install
environment: environment:
@ -5840,7 +5846,9 @@ steps:
name: redis-integration-tests name: redis-integration-tests
- commands: - commands:
- dockerize -wait tcp://memcached:11211 -timeout 120s - dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests - go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on: depends_on:
- wire-install - wire-install
environment: environment:
@ -6443,6 +6451,6 @@ kind: secret
name: aws_secret_access_key name: aws_secret_access_key
--- ---
kind: signature kind: signature
hmac: 59d802aec2892f9bdd89caaa68d0a563cf14cedefe9e76646f3b734e69afa40d hmac: 5b2831b92627887ebe7ee9963796449981a12a96ea775a331fb84536598536ce
... ...

View File

@ -943,7 +943,8 @@ def redis_integration_tests_step():
}, },
'commands': [ 'commands': [
'dockerize -wait tcp://redis:6379/0 -timeout 120s', 'dockerize -wait tcp://redis:6379/0 -timeout 120s',
'./bin/grabpl integration-tests', 'go clean -testcache',
"go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic -timeout=5m {}'",
], ],
} }
@ -958,7 +959,8 @@ def memcached_integration_tests_step():
}, },
'commands': [ 'commands': [
'dockerize -wait tcp://memcached:11211 -timeout 120s', 'dockerize -wait tcp://memcached:11211 -timeout 120s',
'./bin/grabpl integration-tests', 'go clean -testcache',
"go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic -timeout=5m {}'",
], ],
} }