We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c72644e + e5e1013 commit 6d69f93Copy full SHA for 6d69f93
tools/ci.py
@@ -940,13 +940,19 @@ def workflow_config(
940
full = True
941
requested_slugs = _environment_slugs(
942
ctx,
943
- tools.utils.get_cicd_shared_context()["full-testrun-slugs"],
+ os.environ.get(
944
+ "FULL_TESTRUN_SLUGS",
945
+ tools.utils.get_cicd_shared_context()["full-testrun-slugs"],
946
+ ),
947
labels,
948
)
949
else:
950
951
- tools.utils.get_cicd_shared_context()["pr-testrun-slugs"],
952
953
+ "PR_TESTRUN_SLUGS",
954
+ tools.utils.get_cicd_shared_context()["pr-testrun-slugs"],
955
956
957
958
0 commit comments