File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,10 @@ jobs:
5454 - name : Build
5555 run : npm run build
5656
57- - name : Install keychain dependencies
58- run : sudo apt-get install -y gnome-keyring dbus dbus-x11
59-
6057 - name : E2E tests
61- run : |
62- dbus-run-session -- bash -c "
63- rm -f \$HOME/.local/share/keyrings/* &&
64- echo -n 'test' | gnome-keyring-daemon --unlock &&
65- ./test/e2e/run.sh --no-build --parallel 4
66- "
58+ # Run without gnome-keyring: @napi-rs/keyring fails fast when no D-Bus secret
59+ # service is available, and keychain.ts automatically falls back to encrypted
60+ # file storage (~/.mcpc/credentials.json, mode 0600). The keychain code paths
61+ # are covered by unit tests; e2e tests only need credentials to work, not a
62+ # specific storage backend.
63+ run : ./test/e2e/run.sh --no-build --parallel 4
You can’t perform that action at this time.
0 commit comments