Merged in feature/ecr (pull request #161)

Feature/ecr

* nosave

* repo

* awscli

* unzip

* ignore

* moreram

* 14k

* ref

* deployment

* 12k

* uselocal

* go

* dockercomd

* reorder

* iamgename

* installs

* tart

* cli

* clideps

* y

* dockerce

* nodock

* multi

* rmecr

* dev
This commit is contained in:
Michael McGuinness
2025-06-03 13:52:10 +00:00
parent ae4b456399
commit 7ce7c9df4d
73 changed files with 295 additions and 326 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ import (
)
func TestGetDocumentText(t *testing.T) {
ctx := context.Background()
ctx := t.Context()
t.Run("Hello World", func(t *testing.T) {
t.Parallel()
+1 -2
View File
@@ -1,7 +1,6 @@
package documenttext
import (
"context"
"io"
"strings"
"testing"
@@ -20,7 +19,7 @@ import (
)
func TestExecuteExtract(t *testing.T) {
ctx := context.Background()
ctx := t.Context()
pool, err := pgxmock.NewPool()
require.NoError(t, err)
+2 -3
View File
@@ -1,7 +1,6 @@
package documenttext
import (
"context"
"fmt"
"io"
"strings"
@@ -35,7 +34,7 @@ type DocTextConfig struct {
}
func TestCreate(t *testing.T) {
ctx := context.Background()
ctx := t.Context()
pool, err := pgxmock.NewPool()
require.NoError(t, err)
@@ -141,7 +140,7 @@ func TestCreate(t *testing.T) {
}
func TestInformClean(t *testing.T) {
ctx := context.Background()
ctx := t.Context()
mockSQS := queuemock.NewMockSQSClient(t)
cfg := &DocTextConfig{}
+1 -2
View File
@@ -1,7 +1,6 @@
package documenttext
import (
"context"
"io"
"testing"
@@ -16,7 +15,7 @@ import (
)
func TestGetBasePage(t *testing.T) {
ctx := context.Background()
ctx := t.Context()
cfg := DocTextConfig{}
svc := Service{
cfg: &cfg,
+1 -2
View File
@@ -1,7 +1,6 @@
package documenttext
import (
"context"
"database/sql"
"io"
"strings"
@@ -22,7 +21,7 @@ import (
)
func TestStoreExtract(t *testing.T) {
ctx := context.Background()
ctx := t.Context()
pool, err := pgxmock.NewPool()
require.NoError(t, err)