You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logging.info("At least one package incompatible with current platform was detected. Skipping: {}".format(set(targeted_packages) -set(compatible_targeted_packages)))
During build and test, the set of targeted packages may expand or contract depending on the needs of the invocation.
120
125
This function centralizes business and material requirements and outputs the set of packages that should be targeted.
126
+
127
+
:param str glob_string: The basic glob used to query packages within the repo. Defaults to "azure-*"
128
+
:param str target_root_dir: The root directory in which globbing will begin.
129
+
:param str additional_contains_filter: Additional filter option. Used when needing to provide one-off filtration that doesn't merit an additional filter_type. Defaults to empty string.
130
+
:param str filter_type: One a string representing a filter function as a set of options. Options [ "Build", "Docs", "Regression", "Omit_management" ] Defaults to "Build".
131
+
:param bool compatibility_filter: Enables or disables compatibility filtering of found packages. If the invoking python executable does not match a found package's specifiers, the package will be omitted. Defaults to True.
0 commit comments