From 416f3b3d59e4001270f6d930cac38b7735f42955 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 4 Nov 2016 23:56:15 -0700 Subject: [PATCH] Add a 'filter' pattern to justfile (#15) Useful for filtering tests --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 32874e5..c9288a7 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,9 @@ test: build cargo test --lib +filter PATTERN: + cargo test --lib {{PATTERN}} + test-quine: cargo run -- quine clean