Skip to content

Commit 78563ae

Browse files
committed
fix channel env var
1 parent 59e3d8d commit 78563ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/testrail_integration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ def reportable(platform_to_test=None):
102102
minor_num, _ = second_half.split("-")
103103
else:
104104
minor_num = second_half
105-
channel = os.environ.get("FX_CHANNEL").title()
105+
channel = os.environ.get("FX_CHANNEL") or "beta"
106+
channel = channel.title()
106107
if not channel:
107108
if "b" in minor_num:
108109
channel = "Beta"

0 commit comments

Comments
 (0)