From d29876b36771441ab2e04db473776dedd75734d1 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 1 Feb 2026 12:11:04 -0500 Subject: [PATCH] feat: Adds ste alias to perform swift tests with code coverage enabled. --- env/.config/zsh/.zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/env/.config/zsh/.zshrc b/env/.config/zsh/.zshrc index 57293f3..9255574 100755 --- a/env/.config/zsh/.zshrc +++ b/env/.config/zsh/.zshrc @@ -175,7 +175,8 @@ alias pass='PASSWORD_STORE_DIR=/home/michael/.local/share/gopass/stores/root gop alias pc='gopass show --clip' # get an attribute of a password file and copy to the clipboard. alias reload='exec zsh -l' # reload the shell, useful when making changes. alias s='swift' # shorthand to access swift commands -alias st='swift test' # swift test +alias st='swift test' # swift test +alias ste='swift test --enable-code-coverage' # swift test with code coverage enabled. alias sb='swift build' # swift build alias syu='yay -Syu' # Update packages. alias t='tmux' # access tmux quickly