Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run unit tests only for plugins with changes #1838

Open
wants to merge 29 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1e0b484
Run unit tests only for plugins with changes
ShyamGadde Jan 23, 2025
d5e614d
Add spaces to avoid problems with partial matches
ShyamGadde Jan 23, 2025
0bc67df
Test all plugins when commits added to trunk
ShyamGadde Jan 23, 2025
cbce9b4
Test all plugins when non-plugin files are changed
ShyamGadde Jan 23, 2025
76a48cf
Trigger tests for dependent plugins on changes to OD
ShyamGadde Jan 23, 2025
d098b38
Check for duplicates in the plugins array for good measure
ShyamGadde Jan 23, 2025
020cce3
Fix Git diff listing files not changed by PR
ShyamGadde Jan 23, 2025
eb4dad0
Fix error with merge base resolution
ShyamGadde Jan 23, 2025
bea1bc0
Use tj-actions/changed-files for determining changed files
ShyamGadde Jan 30, 2025
3c66be3
Refactor logic to determine changes to config files
ShyamGadde Jan 30, 2025
fd07a0c
Simplify changed plugins detection
ShyamGadde Jan 30, 2025
fa1a433
Remove debug print statement
ShyamGadde Jan 30, 2025
11949ac
Fix array expansion to avoid SC2199 warning
ShyamGadde Feb 3, 2025
1033ad7
Test all plugins on changes to PHPUnit bootstrap file
ShyamGadde Feb 3, 2025
af6f8ff
Add PHPUnit bootstrap file to list of paths to trigger this workflow
ShyamGadde Feb 3, 2025
90a5ab7
Rename PLUGIN_DEPENDENCIES to PLUGIN_DEPENDENTS for clarity
ShyamGadde Feb 4, 2025
5323c60
Merge branch 'trunk' into update/skip-unnecessary-plugin-tests
ShyamGadde Feb 4, 2025
8917216
Restore EOF EOL
ShyamGadde Feb 4, 2025
8713f45
Remove deprecated Codecov configuration
ShyamGadde Feb 5, 2025
f89cf3e
Merge branch 'trunk' into update/skip-unnecessary-plugin-tests
ShyamGadde Feb 6, 2025
7aff9b2
Revert "Remove deprecated Codecov configuration"
ShyamGadde Feb 6, 2025
27cd4d0
Merge branch 'trunk' into update/skip-unnecessary-plugin-tests
ShyamGadde Feb 10, 2025
0be7a66
Show only patch coverage in PR comment
ShyamGadde Feb 10, 2025
6b34020
Limit Project coverage status checks to only the trunk
ShyamGadde Feb 10, 2025
e21ec9e
Use condensed variants of header, files and footer in the PR comment
ShyamGadde Feb 10, 2025
db41189
Reduce patch coverage threshold to 20 percent
ShyamGadde Feb 10, 2025
9c8c17e
Merge branch 'trunk' into update/skip-unnecessary-plugin-tests
ShyamGadde Mar 18, 2025
93dbf21
Enable carryforward flag for partial testing setup
ShyamGadde Mar 18, 2025
c1c5b11
Implement tokenless coverage report uploads for forks
ShyamGadde Mar 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 63 additions & 20 deletions .github/workflows/php-test-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- '**/package.json'
- 'package-lock.json'
- 'phpunit.xml.dist'
- 'tools/phpunit/bootstrap.php'
- 'composer.json'
- 'composer.lock'
pull_request:
Expand All @@ -24,6 +25,7 @@ on:
- '**/package.json'
- 'package-lock.json'
- 'phpunit.xml.dist'
- 'tools/phpunit/bootstrap.php'
- 'composer.json'
- 'composer.lock'
types:
Expand Down Expand Up @@ -57,6 +59,55 @@ jobs:
steps:
- uses: styfle/[email protected]
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
dir_names: true # Output unique changed directories.
dir_names_max_depth: 2
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This limits the directory output to a maximum depth of 2. For example, plugins/<plugin-name>/tests will be returned as plugins/<plugin-name>.
Since dir_names: true ensures only unique directories are listed, combining it with dir_names_max_depth: 2 allows us to extract a clean list of changed plugin names. This avoids additional logic in the next step for determining modified plugins.

files_yaml: |
plugins:
- 'plugins/**'
config:
- '.github/workflows/php-test-plugins.yml'
- '.wp-env.json'
- '**/package.json'
- 'package-lock.json'
- 'phpunit.xml.dist'
- 'tools/phpunit/bootstrap.php'
- 'composer.json'
- 'composer.lock'
- name: Get changed plugins
id: changed-plugins
run: |
if [[ "${{ github.event_name }}" == "push" || "${{ steps.changed-files.outputs.config_any_changed }}" == "true" ]]; then
ALL_CHANGED_PLUGINS=($(ls plugins))
echo "all_changed_plugins=${ALL_CHANGED_PLUGINS[*]}" >> $GITHUB_OUTPUT
exit 0
fi

declare -a ALL_CHANGED_PLUGINS=()
for DIR in ${{ steps.changed-files.outputs.plugins_all_changed_files }}; do
PLUGIN_NAME=$(basename "$DIR")
ALL_CHANGED_PLUGINS+=("$PLUGIN_NAME")
done

# Define and add plugin dependents (e.g., changes to Optimization Detective should trigger its dependents).
declare -A PLUGIN_DEPENDENTS=(
["optimization-detective"]="embed-optimizer image-prioritizer"
)
for PLUGIN in "${ALL_CHANGED_PLUGINS[@]}"; do
if [[ -n "${PLUGIN_DEPENDENTS[$PLUGIN]}" ]]; then
for DEP in ${PLUGIN_DEPENDENTS[$PLUGIN]}; do
if [[ ! " ${ALL_CHANGED_PLUGINS[*]} " =~ " ${DEP} " ]]; then
ALL_CHANGED_PLUGINS+=("$DEP")
fi
done
fi
done

ALL_CHANGED_PLUGINS=($(echo "${ALL_CHANGED_PLUGINS[@]}" | tr ' ' '\n' | sort | tr '\n' ' '))
echo "all_changed_plugins=${ALL_CHANGED_PLUGINS[*]}" >> $GITHUB_OUTPUT
- name: Setup Node.js (.nvmrc)
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -88,32 +139,24 @@ jobs:
- name: Running single site unit tests
run: |
if [ "${{ matrix.coverage }}" == "true" ]; then
npm run test-php:performance-lab -- -- -- --coverage-clover=./single-site-reports/coverage-performance-lab.xml
npm run test-php:auto-sizes -- -- -- --coverage-clover=./single-site-reports/coverage-auto-sizes.xml
npm run test-php:dominant-color-images -- -- -- --coverage-clover=./single-site-reports/coverage-dominant-color-images.xml
npm run test-php:embed-optimizer -- -- -- --coverage-clover=./single-site-reports/coverage-embed-optimizer.xml
npm run test-php:image-prioritizer -- -- -- --coverage-clover=./single-site-reports/coverage-image-prioritizer.xml
npm run test-php:optimization-detective -- -- -- --coverage-clover=./single-site-reports/coverage-optimization-detective.xml
npm run test-php:speculation-rules -- -- -- --coverage-clover=./single-site-reports/coverage-speculation-rules.xml
npm run test-php:web-worker-offloading -- -- -- --coverage-clover=./single-site-reports/coverage-web-worker-offloading.xml
npm run test-php:webp-uploads -- -- -- --coverage-clover=./single-site-reports/coverage-webp-uploads.xml
for PLUGIN in ${{ steps.changed-plugins.outputs.all_changed_plugins }}; do
npm run test-php:$PLUGIN -- -- -- --coverage-clover=./single-site-reports/coverage-$PLUGIN.xml
done
else
npm run test-php
for PLUGIN in ${{ steps.changed-plugins.outputs.all_changed_plugins }}; do
npm run test-php:$PLUGIN
done
fi
- name: Running multisite unit tests
run: |
if [ "${{ matrix.coverage }}" == "true" ]; then
npm run test-php-multisite:performance-lab -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-performance-lab.xml
npm run test-php-multisite:auto-sizes -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-auto-sizes.xml
npm run test-php-multisite:dominant-color-images -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-dominant-color-images.xml
npm run test-php-multisite:embed-optimizer -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-embed-optimizer.xml
npm run test-php-multisite:image-prioritizer -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-image-prioritizer.xml
npm run test-php-multisite:optimization-detective -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-optimization-detective.xml
npm run test-php-multisite:speculation-rules -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-speculation-rules.xml
npm run test-php-multisite:web-worker-offloading -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-web-worker-offloading.xml
npm run test-php-multisite:webp-uploads -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-webp-uploads.xml
for PLUGIN in ${{ steps.changed-plugins.outputs.all_changed_plugins }}; do
npm run test-php-multisite:$PLUGIN -- -- -- --coverage-clover=./multisite-reports/coverage-multisite-$PLUGIN.xml
done
else
npm run test-php-multisite
for PLUGIN in ${{ steps.changed-plugins.outputs.all_changed_plugins }}; do
npm run test-php-multisite:$PLUGIN
done
fi
- name: Upload single site coverage reports to Codecov
if: ${{ matrix.coverage == true }}
Expand Down
5 changes: 5 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ coverage:
target: auto
threshold: 80%
base: auto
branches:
- trunk
informational: true
patch:
default:
threshold: 80%
Copy link
Contributor Author

@ShyamGadde ShyamGadde Feb 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that the threshold for patch coverage is set to 80%, which (based on Codecov’s docs) means that coverage can drop by up to 80% while still passing. I'm wondering if this was intentional—perhaps it was meant to ensure a minimum of 80% coverage rather than allowing such a large drop?

Additionally, since target isn't explicitly set, it defaults to the project coverage from the pull request base. That results in PR checks displaying something like:

image

Would it make sense to set target: 100% for patch coverage, with a lower threshold (maybe 10-20%), to ensure new changes are reasonably covered? Just wanted to check if this aligns with the intended behavior.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm wondering if this was intentional—perhaps it was meant to ensure a minimum of 80% coverage rather than allowing such a large drop?

I think so, yes. The naming is a bit confusing.

So maybe threshold: 20% or target: 80%?

informational: true
comment:
hide_project_coverage: TRUE
layout: "condensed_header, condensed_files, condensed_footer"
Loading