Retool typecheck to be simpler

Instead of walking paths ourselves, just let Go's packages library do
it.  This is a slight CLI change - it wants "./foo" rather than "foo".

This also flagged a few things which seem to be legit failures.
This commit is contained in:
Tim Hockin
2023-12-29 13:22:52 -08:00
parent 4d37426a3a
commit 6dbc754ed6
6 changed files with 63 additions and 144 deletions

View File

@@ -21,16 +21,10 @@ package util
import (
"fmt"
"math/rand"
"net"
"os"
"reflect"
"runtime"
"sync"
"testing"
"time"
winio "github.com/Microsoft/go-winio"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)