Merged in feature/testingopts (pull request #129)

Testing Options and Clean Up

* bitsandbobs

* lint

* healthchecks

* imgintests

* singlegenerate

* testclean

* network

* networkclean

* cmds
This commit is contained in:
Michael McGuinness
2025-05-03 01:16:53 +00:00
parent 15fa3b49a5
commit dd2eebf13a
73 changed files with 4657 additions and 234 deletions
+4 -4
View File
@@ -25,7 +25,7 @@ type TestConfig struct {
func TestCreateQueue(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("Skipping long test in short mode")
t.SkipNow()
}
ctx := context.Background()
@@ -44,7 +44,7 @@ func TestCreateQueue(t *testing.T) {
func TestAssertMessageWait(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("Skipping long test in short mode")
t.SkipNow()
}
ctx := context.Background()
@@ -71,7 +71,7 @@ func TestAssertMessageWait(t *testing.T) {
func TestAssertMessageBodyWait(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("Skipping long test in short mode")
t.SkipNow()
}
ctx := context.Background()
@@ -95,7 +95,7 @@ func TestAssertMessageBodyWait(t *testing.T) {
func TestAssertMessageAttrWait(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("Skipping long test in short mode")
t.SkipNow()
}
ctx := context.Background()