fish: Perform local tests by default

This commit is contained in:
Donovan Glover 2023-06-10 20:07:54 -04:00
parent e492d80d0b
commit e42bfc091a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -60,9 +60,9 @@ in {
jis = "recode shift_jis..utf8"; # Easily convert shift_jis-encoded files to utf8
utf16 = "recode utf16..utf8"; # Rarely, some files from Japan are utf16 instead
jp = "LANG=ja_JP.UTF-8 LC_ALL=ja_JP.UTF-8";
vm = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose && nixos-rebuild build-vm --flake . --verbose && ./result/bin/run-${VARIABLES.hostname}-vm && trash put result ${VARIABLES.hostname}.qcow2";
sw = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose && sudo nixos-rebuild switch --flake . --verbose";
st = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose";
vm = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local && nixos-rebuild build-vm --flake . --verbose && ./result/bin/run-${VARIABLES.hostname}-vm && trash put result ${VARIABLES.hostname}.qcow2";
sw = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local && sudo nixos-rebuild switch --flake . --verbose";
st = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local";
c = "tput clear"; # Clear the terminal completely
e = "exit";