Don't skip AMQP acceptance tests #run_acceptance_tests

This commit is contained in:
M. Mert Yildiran
2022-07-10 12:21:51 +03:00
parent 586046150d
commit c60e9cf747

View File

@@ -3,11 +3,12 @@ package acceptanceTests
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/go-redis/redis/v8"
amqp "github.com/rabbitmq/amqp091-go"
"os/exec" "os/exec"
"testing" "testing"
"time" "time"
"github.com/go-redis/redis/v8"
amqp "github.com/rabbitmq/amqp091-go"
) )
func TestRedis(t *testing.T) { func TestRedis(t *testing.T) {
@@ -109,9 +110,6 @@ func TestRedis(t *testing.T) {
} }
func TestAmqp(t *testing.T) { func TestAmqp(t *testing.T) {
t.Skip("ignoredd for now because those tests are not stable")
if testing.Short() { if testing.Short() {
t.Skip("ignored acceptance test") t.Skip("ignored acceptance test")
} }