We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f2eb9 commit 719270cCopy full SHA for 719270c
ci/test/ui-tests.sh
@@ -27,7 +27,7 @@ set -e
27
echo "========================"
28
echo "RUNNING ui e2e tests"
29
30
-nix-shell -p xvfb-run --command "xvfb-run just test-e2e"
+nix-shell --command "xvfb-run just test-e2e"
31
32
33
ui-tests/shell.nix
@@ -0,0 +1,20 @@
1
+# copied and adapted from https://nix.dev/tutorials/first-steps/declarative-shell.html
2
+# however, using unstable like flake.nix
3
+let
4
+
5
+ nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable";
6
7
+ pkgs = import nixpkgs { config = {}; overlays = []; };
8
9
+in
10
11
12
+pkgs.mkShellNoCC {
13
14
+ packages = with pkgs; [
15
16
+ xvfb-run
17
18
+ ];
19
20
+}
0 commit comments