diff options
author | Egor Tensin <egor@tensin.name> | 2025-07-22 23:36:45 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-07-22 23:45:19 +0200 |
commit | 50c17bbd08700a3210fdfd35553fcf761343086d (patch) | |
tree | 246c162a2f61094e8b783b698d28d2d4114c5a93 /test | |
parent | docker: bump base images (diff) | |
download | cgitize-50c17bbd08700a3210fdfd35553fcf761343086d.tar.gz cgitize-50c17bbd08700a3210fdfd35553fcf761343086d.zip |
DEVELOPMENT: clarify testing a bit
Diffstat (limited to '')
-rw-r--r-- | test/set_credentials.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/set_credentials.sh b/test/set_credentials.sh new file mode 100644 index 0000000..1d8fd87 --- /dev/null +++ b/test/set_credentials.sh @@ -0,0 +1,13 @@ +IFS= read -r -s -p 'Bitbucket token: ' CGITIZE_BITBUCKET_TOKEN +echo +IFS= read -r -s -p 'GitHub token: ' CGITIZE_GITHUB_TOKEN +echo +IFS= read -r -s -p 'GitLab token: ' CGITIZE_GITLAB_TOKEN +echo + +export CGITIZE_BITBUCKET_USERNAME=cgitize-test +export CGITIZE_BITBUCKET_TOKEN +export CGITIZE_GITHUB_USERNAME=cgitize-test +export CGITIZE_GITHUB_TOKEN +export CGITIZE_GITLAB_USERNAME=cgitize-test +export CGITIZE_GITLAB_TOKEN |