diff options
| author | 2025-03-05 09:41:58 -0800 | |
|---|---|---|
| committer | 2025-03-05 09:54:08 -0800 | |
| commit | 44cc43dc18de2e98f0b9e2b1729366d77e9c38b3 (patch) | |
| tree | ed861c6c8c3a27e9fbff1b1e6050db4628e0cf31 | |
| parent | 26674298e28529f91d65af81f88c5c74190991c8 (diff) | |
| download | new-dotfiles-44cc43dc18de2e98f0b9e2b1729366d77e9c38b3.tar.gz new-dotfiles-44cc43dc18de2e98f0b9e2b1729366d77e9c38b3.zip | |
pop-os/emacs: Exclude the right projects for tests
| -rw-r--r-- | oni/home/config/pop-os/emacs.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/oni/home/config/pop-os/emacs.el b/oni/home/config/pop-os/emacs.el index 1db27a0..f8c76ee 100644 --- a/oni/home/config/pop-os/emacs.el +++ b/oni/home/config/pop-os/emacs.el @@ -97,7 +97,11 @@ (let ((pick (transient-arg-value "--pick" args)) (fail (transient-arg-value "--stop-on-failure" args)) (brand (transient-arg-value "--brand=" args))) - (artisan--test-internal pick (or brand "chanced") "punt" fail))) + (artisan--test-internal pick (or brand "chanced") + (if (string= brand "punt") + "chanced" + "punt") + fail))) (defvar artisan--test-last-file nil "The last testing commnand that was run in the test buffer. |
