We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e6363 commit 4ad31d4Copy full SHA for 4ad31d4
cmd/eval-dev-quality/cmd/init_test.go
@@ -0,0 +1,13 @@
1
+package cmd
2
+
3
+import "os"
4
5
+func init() {
6
+ // Unset environment variables that are often found as defaults in the terminal configuration.
7
+ if err := os.Unsetenv("PROVIDER_TOKEN"); err != nil {
8
+ panic(err)
9
+ }
10
+ if err := os.Unsetenv("PROVIDER_URL"); err != nil {
11
12
13
+}
0 commit comments