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
To make the Python tests only run when something has changed in the data directory (where the Python code exists), we might be use a command similar to this in the build step:
git diff --quiet HEAD^ HEAD data
This is commonly used to conditionally perform Vercel builds for projects where you only want specific changes to trigger new builds.
The text was updated successfully, but these errors were encountered:
Do we actually run Python tests during for releases and PRs? Both our GitHub workflows have the python tests commented out:
klimatkollen/.github/workflows/pr_check.yml
Lines 61 to 64 in b10f498
klimatkollen/.github/workflows/release.yml
Lines 61 to 64 in b10f498
To make the Python tests only run when something has changed in the
data
directory (where the Python code exists), we might be use a command similar to this in the build step:git diff --quiet HEAD^ HEAD data
This is commonly used to conditionally perform Vercel builds for projects where you only want specific changes to trigger new builds.
The text was updated successfully, but these errors were encountered: