Skip to content

Commit 608d6a8

Browse files
authored
Add optional skip to community addons, bump upgrade path starting version (#4529)
1 parent 66176f2 commit 608d6a8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tests/libs/addons.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ then
120120
setup_addons_tests "$NAME" "$DISTRO" "$PROXY" "$TO_CHANNEL"
121121
run_smoke_test "$NAME"
122122
run_core_addons_tests "$NAME"
123-
run_community_addons_tests "$NAME"
123+
DISABLE_COMMUNITY_TESTS="${DISABLE_COMMUNITY_TESTS:-0}"
124+
if [ "x${DISABLE_COMMUNITY_TESTS}" != "x1" ]; then
125+
run_community_addons_tests "$NAME"
126+
fi
124127
run_eksd_addons_tests
125128
run_gpu_addon_test
126129
run_microceph_addon_test

tests/test-upgrade-path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_refresh_path(self):
2727
Deploy an old snap and try to refresh until the current one.
2828
2929
"""
30-
start_channel = 19
30+
start_channel = 24
3131
if is_strict():
3232
start_channel = 25
3333
last_stable_minor = None

0 commit comments

Comments
 (0)