Skip to content

Commit 439e926

Browse files
committed
test: using http repo link for cloning vuh repository in tests
1 parent 2afba82 commit 439e926

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
- name: Unit tests
1717
working-directory: 'tests'
1818
run: |
19-
./run_tests.sh -tp ${{ matrix.test_group }} || exit 1
19+
./run_tests.sh -q -tp ${{ matrix.test_group }} || exit 1

tests/run_tests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
APP_NAME='run_tests.sh'
2525

26+
VUH_REPO_ADDRESS='https://github.com/Greewil/version-update-helper.git'
27+
2628
TRIMMED_HEADER='test_id,branch_name,correct_result,asserting_error,use_separate_env,command'
2729
ASSERT_DATA_FILE='assert_data.csv'
2830
TEXT_FOR_COMMA_REPLACEMENT='{{comma}}'
@@ -148,7 +150,7 @@ function _run_test_in_tmp_environment() {
148150
mkdir -p "tmp/$unique_test_dir"
149151
cd "tmp/$unique_test_dir" || exit 1
150152
repo_name='vuh-repo'
151-
git clone '[email protected]:Greewil/version-update-helper.git' "$repo_name"
153+
git clone "$VUH_REPO_ADDRESS" "$repo_name"
152154
_run_test "$test_id" "$branch_name" "$correct_result" "$asserting_error" "$command" "$repo_name" || exit 1
153155
cd "$STARTING_DIR" || exit 1
154156
_show_success_message "Test '$test_id' successfully finished"

0 commit comments

Comments
 (0)