mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Exclude integration tests from running on test-backend step (#50359)
* Chore: Exclude integration tests from running on test-backend step * Remove -v from go test command * Add check to skip integration tests before each integration test * Try to restart pipeline * Retrying to make pipeline run
This commit is contained in:
@@ -11,6 +11,9 @@ import (
|
||||
)
|
||||
|
||||
func TestIntegrationEntityEventsService(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping integration test")
|
||||
}
|
||||
var ctx context.Context
|
||||
var service EntityEventsService
|
||||
|
||||
@@ -135,6 +138,9 @@ func TestIntegrationEntityEventsService(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestIntegrationCreateDatabaseEntityId(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping integration test")
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
entityType EntityType
|
||||
|
||||
Reference in New Issue
Block a user