From 159e4107b8d061278a546d904eb58b425f65a627 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Tue, 15 Jul 2025 10:38:10 +0200 Subject: [PATCH] fix Pixelfed test eval failure (#458) Reviewed-on: https://git.fediversity.eu/Fediversity/Fediversity/pulls/458 Co-authored-by: Kiara Grouwstra Co-committed-by: Kiara Grouwstra --- .forgejo/workflows/ci.yaml | 6 ++++++ services/tests/pixelfed-garage.nix | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 7bc68bf5..b41a106e 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -27,6 +27,12 @@ jobs: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.test-mastodon-service -L + check-pixelfed: + runs-on: native + steps: + - uses: actions/checkout@v4 + - run: nix build .#checks.x86_64-linux.test-pixelfed-garage-service -L + check-peertube: runs-on: native steps: diff --git a/services/tests/pixelfed-garage.nix b/services/tests/pixelfed-garage.nix index 4939fdba..a4450ade 100644 --- a/services/tests/pixelfed-garage.nix +++ b/services/tests/pixelfed-garage.nix @@ -113,6 +113,7 @@ let ${seleniumQuit}''; + dummyFile = pkgs.writeText "dummy" "dummy"; in { name = "test-pixelfed-garage"; @@ -170,6 +171,12 @@ in users.users.selenium = { isNormalUser = true; }; + fediversity.temp.initialUser = { + username = "dummy"; + displayName = "dummy"; + email = "dummy"; + passwordFile = dummyFile; + }; }; };