Skip to content

Commit

Permalink
update repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
romnn committed Feb 2, 2021
1 parent bca8876 commit a04a1e6
Show file tree
Hide file tree
Showing 33 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: romnnn/setup-bazel-action@master
- uses: romnn/setup-bazel-action@master
with:
version: 3.7.2

Expand Down
4 changes: 2 additions & 2 deletions BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020, romnnn
Copyright (c) 2020, romnn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## testcontainers

[![GitHub](https://img.shields.io/github/license/romnnn/testcontainers)](https://github.com/romnnn/testcontainers)
[![GoDoc](https://godoc.org/github.com/romnnn/testcontainers?status.svg)](https://godoc.org/github.com/romnnn/testcontainers) [![Test Coverage](https://codecov.io/gh/romnnn/testcontainers/branch/master/graph/badge.svg)](https://codecov.io/gh/romnnn/testcontainers)
[![Release](https://img.shields.io/github/release/romnnn/testcontainers)](https://github.com/romnnn/testcontainers/releases/latest)
[![GitHub](https://img.shields.io/github/license/romnn/testcontainers)](https://github.com/romnn/testcontainers)
[![GoDoc](https://godoc.org/github.com/romnn/testcontainers?status.svg)](https://godoc.org/github.com/romnn/testcontainers) [![Test Coverage](https://codecov.io/gh/romnn/testcontainers/branch/master/graph/badge.svg)](https://codecov.io/gh/romnn/testcontainers)
[![Release](https://img.shields.io/github/release/romnn/testcontainers)](https://github.com/romnn/testcontainers/releases/latest)

A collection of pre-configured [testcontainers](https://github.com/testcontainers/testcontainers-go) for your golang integration tests.

Expand All @@ -22,7 +22,7 @@ import (
"log"
"time"

tc "github.com/romnnn/testcontainers/mongo"
tc "github.com/romnn/testcontainers/mongo"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
Expand Down
4 changes: 2 additions & 2 deletions WORKSPACE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/kafka/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/kafka/kafka_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"

"github.com/Shopify/sarama"
tc "github.com/romnnn/testcontainers"
tckafka "github.com/romnnn/testcontainers/kafka"
tc "github.com/romnn/testcontainers"
tckafka "github.com/romnn/testcontainers/kafka"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/minio/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/minio/minio_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
tcminio "github.com/romnnn/testcontainers/minio"
tcminio "github.com/romnn/testcontainers/minio"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/mongo/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/mongo/mongo_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"time"

tc "github.com/romnnn/testcontainers"
tcmongo "github.com/romnnn/testcontainers/mongo"
tc "github.com/romnn/testcontainers"
tcmongo "github.com/romnn/testcontainers/mongo"
log "github.com/sirupsen/logrus"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
Expand Down
2 changes: 1 addition & 1 deletion examples/rabbitmq/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/rabbitmq/rabbitmq_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"

tcrabbitmq "github.com/romnnn/testcontainers/rabbitmq"
tcrabbitmq "github.com/romnn/testcontainers/rabbitmq"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/readme/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/readme/readme.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"time"

tc "github.com/romnnn/testcontainers/mongo"
tc "github.com/romnn/testcontainers/mongo"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/readme/readme_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"
"time"

tcmongo "github.com/romnnn/testcontainers/mongo"
tcmongo "github.com/romnn/testcontainers/mongo"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/redis/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/redis/redis_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

"github.com/go-redis/redis"
tcredis "github.com/romnnn/testcontainers/redis"
tcredis "github.com/romnn/testcontainers/redis"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/romnnn/testcontainers
module github.com/romnn/testcontainers

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion kafka/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions kafka/kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
dockerclient "github.com/docker/docker/client"
"github.com/docker/go-connections/nat"
"github.com/prometheus/common/log"
tc "github.com/romnnn/testcontainers"
tczk "github.com/romnnn/testcontainers/zookeeper"
tc "github.com/romnn/testcontainers"
tczk "github.com/romnn/testcontainers/zookeeper"
"github.com/testcontainers/testcontainers-go"
)

Expand Down
2 changes: 1 addition & 1 deletion kafka/kafka_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"

"github.com/Shopify/sarama"
tc "github.com/romnnn/testcontainers"
tc "github.com/romnn/testcontainers"
)

// TestKafkaContainer ...
Expand Down
2 changes: 1 addition & 1 deletion minio/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion minio/minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/docker/go-connections/nat"
tc "github.com/romnnn/testcontainers"
tc "github.com/romnn/testcontainers"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
)
Expand Down
2 changes: 1 addition & 1 deletion mongo/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mongo/mongo.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/docker/go-connections/nat"
tc "github.com/romnnn/testcontainers"
tc "github.com/romnn/testcontainers"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
)
Expand Down
2 changes: 1 addition & 1 deletion rabbitmq/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rabbitmq/rabbitmq.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/docker/go-connections/nat"
tc "github.com/romnnn/testcontainers"
tc "github.com/romnn/testcontainers"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
)
Expand Down
2 changes: 1 addition & 1 deletion redis/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion redis/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/docker/go-connections/nat"
tc "github.com/romnnn/testcontainers"
tc "github.com/romnn/testcontainers"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
)
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from invoke import task
import webbrowser

PKG = "github.com/romnnn/testcontainers"
PKG = "github.com/romnn/testcontainers"
CMD_PKG = PKG


Expand Down
2 changes: 1 addition & 1 deletion zookeeper/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion zookeeper/zookeeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/docker/go-connections/nat"
tc "github.com/romnnn/testcontainers"
tc "github.com/romnn/testcontainers"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
)
Expand Down

0 comments on commit a04a1e6

Please sign in to comment.