Merged in feature/shorttestsanddirtidy (pull request #26)
Add short tests and Tidy internal directories * complete the tasks
This commit is contained in:
@@ -11,6 +11,9 @@ import (
|
||||
)
|
||||
|
||||
func TestCreateQueueContainer(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("Skipping long test in short mode")
|
||||
}
|
||||
ctx := context.Background()
|
||||
|
||||
ncfg, ncleanup := CreateNetwork(t, ctx)
|
||||
@@ -47,6 +50,9 @@ func TestCreateQueueContainer(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestCreateQueueWithDependencies(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("Skipping long test in short mode")
|
||||
}
|
||||
ctx := context.Background()
|
||||
|
||||
conn, cleanup := CreateQueueWithDependencies(t, ctx, "queryRunner")
|
||||
|
||||
Reference in New Issue
Block a user