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
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 23 additions & 0 deletions .github/workflows/snapshot_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Snapshot tests
on:
pull_request

env:
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
RUST_VERSION: 1.85.1

jobs:
snapshot-tests:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.body, 'RUN_SNAPSHOT_TESTS')
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: rustup override set ${{ env.RUST_VERSION }}
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8

- run: git fetch --depth 2
- run: git checkout origin/master
- name: Generate good snapshots
run: INSTA_OUTPUT=none INSTA_UPDATE=always cargo test -- --include-ignored
- run: git checkout $GITHUB_SHA # merge of master+branch
- run: cargo test -- --include-ignored
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ release = true # (to be only used for official posts about Rust releases announc

If you're making changes to how the site is generated, you may want to check the impact your changes have on the output.
For this purpose, there is a setup to do snapshot testing over the entire output directory.
It's not run in CI, because the number of snapshots is too large.
But you can run these tests locally as needed.

To run these tests in CI, add the string `RUN_SNAPSHOT_TESTS` to the PR description.
You can also run these tests locally for a faster feedback cycle:

- Make sure you have [cargo-insta](https://insta.rs/docs/quickstart/) installed.

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ pub fn main() -> eyre::Result<()> {

#[test]
fn snapshot() {
std::fs::remove_dir_all(concat!(env!("CARGO_MANIFEST_DIR"), "/site")).unwrap();
let _ = std::fs::remove_dir_all(concat!(env!("CARGO_MANIFEST_DIR"), "/site"));
main().unwrap();
let timestamped_files = ["releases.json", "feed.xml"];
let inexplicably_non_deterministic_files = ["images/2023-08-rust-survey-2022/experiences.png"];
Expand Down