You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cli-test is in the tests directory. It is a separate go module,
because we don't want it to run with the unit tests when running
go test ./...
But this approach causes issues with automatic update of dependencies,
because the go.mod in the tests directory does not get automatic
updates, and then fauls in CI.
Instead, this commit changes the cli-test to only run if the RUN_CLI_TESTS
environment variable is set to "true".
In addition, this commit stopped using the deprecated testscript.RunMain
function, and replaces it with the recommended testscript.Main function.
0 commit comments