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

Add snapshot tests in CI #1537

Merged
merged 3 commits into from
Mar 27, 2025
Merged

Add snapshot tests in CI #1537

merged 3 commits into from
Mar 27, 2025

Conversation

senekor
Copy link
Contributor

@senekor senekor commented Mar 26, 2025

@senekor senekor requested a review from Copilot March 26, 2025 23:40
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR adds support for snapshot tests in CI and updates documentation accordingly.

  • A new GitHub Actions workflow is introduced to run snapshot tests when the PR description contains a magic string.
  • The README is updated with instructions on how to trigger snapshot tests in CI and locally.
  • The snapshot test in src/lib.rs now avoids a panic on directory deletion failure by swallowing the error.

Reviewed Changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

File Description
.github/workflows/snapshot_tests.yml New workflow file for running snapshot tests based on a magic string in the PR description.
README.md Updated instructions clarifying how to run snapshot tests in CI and locally.
src/lib.rs Adjusted test setup to avoid panicking when the output directory removal fails.
Comments suppressed due to low confidence (2)

src/lib.rs:308

  • Swallowing errors from remove_dir_all may hide underlying filesystem issues; consider explicitly handling the error and logging a warning if the removal fails.
let _ = std::fs::remove_dir_all(concat!(env("CARGO_MANIFEST_DIR"), "/site"));

.github/workflows/snapshot_tests.yml:12

  • [nitpick] Using a magic string directly in the condition can reduce clarity; consider extracting 'RUN_SNAPSHOT_TESTS' into a named constant or adding a comment explaining its purpose.
if: contains(github.event.pull_request.body, 'RUN_SNAPSHOT_TESTS')

@senekor senekor requested a review from Manishearth March 26, 2025 23:42
@Manishearth Manishearth merged commit 7a53f0f into master Mar 27, 2025
4 checks passed
@Manishearth Manishearth deleted the senekor/snapshot-tests-in-ci branch March 27, 2025 05:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Run snapshot tests on-demand in CI
2 participants