We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42cde68 commit 4165c7dCopy full SHA for 4165c7d
.github/workflows/scripts/get_test_matrix.sh
@@ -16,7 +16,7 @@ function find_test_1() {
16
local n=$2
17
local all_service=$3
18
19
- common_file_change=$(printf '%s\n' "${changed_files[@]}"| grep ${pre_service} | cut -d'/' -f$n | grep -E '*.py' | grep -v '__init__.py|setup.py' | sort -u) || true
+ common_file_change=$(printf '%s\n' "${changed_files[@]}"| grep ${pre_service} | cut -d'/' -f$n | grep -E '*.py' | grep -vE '__init__.py|version.py' | sort -u) || true
20
if [ "$common_file_change" ] || [ "$all_service" = "true" ]; then
21
# if common files changed, run all services
22
services=$(ls ${pre_service} | cut -d'/' -f$n | grep -vE '*.md|*.py|*.sh|*.yaml|*.yml|*.pdf' | sort -u) || true
0 commit comments