1 import ./make-test-python.nix ({ pkgs, ... }: {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ fgaz ];
7 nodes.machine = { pkgs, ... }: {
13 environment.systemPackages = [ pkgs.ft2-clone ];
21 # Add a dummy sound card, or the program won't start
22 machine.execute("modprobe snd-dummy")
24 machine.execute("ft2-clone >&2 &")
26 machine.wait_for_window(r"Fasttracker")
28 machine.wait_for_text(r"(Songlen|Repstart|Time|About|Nibbles|Help)")
29 machine.screenshot("screen")