-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathenvironment-variables.ps1.sample
15 lines (11 loc) · 1.18 KB
/
environment-variables.ps1.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# copy/rename this file to environment-variables.ps1
Write-Host 'Setting environment variables for integration tests...'
$env:Tests_Github_Name = 'scm-backup-testuser' # User for authentication. Must have read permission for private repo.
$env:Tests_Github_PW = 'not-the-real-password' # the user's personal access token
$env:Tests_Github_RepoPrivate = 'scm-backup-test-private' # a private repository
$env:Tests_Bitbucket_Name = 'scm-backup-testuser' # User for authentication. Must have read permission for private repo.
$env:Tests_Bitbucket_PW = 'not-the-real-password' # the user's app password
$env:Tests_Bitbucket_RepoPrivateGit = 'scm-backup-test-private-git' # a private repository
$env:Tests_Gitlab_Name = 'scm-backup-testuser' # User for authentication. Must have read permission for private repo.
$env:Tests_Gitlab_PW = 'not-the-real-password' # the user's personal access token
$env:Tests_Gitlab_RepoPrivate = 'scm-backup-test-private' # a private repository