Skip to content

Commit 30966a8

Browse files
authored
Enable running the tests in vscode (#83)
Using a .env file as for security reasons we don't want to commit the `INPUT_REPO_TOKEN` environment variable to source control. Also set the tests timeout to be 90 seconds, as the default of 30 seconds is too low for our tests.
1 parent 69b9506 commit 30966a8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.env

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"go.testTimeout": "90s",
3+
"go.testEnvFile": "${workspaceFolder}/.env"
4+
}

0 commit comments

Comments
 (0)