summaryrefslogtreecommitdiffstats
path: root/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile13
1 files changed, 11 insertions, 2 deletions
diff --git a/Justfile b/Justfile
index f7e5cc9..c5e1e67 100644
--- a/Justfile
+++ b/Justfile
@@ -1,5 +1,5 @@
-all: build test
-all-release: build-release test-release
+all: build test xtests
+all-release: build-release test-release xtests-release
# compiles the exa binary
@@ -28,6 +28,15 @@ all-release: build-release test-release
cargo hack test --feature-powerset -- --quiet
+# runs extended tests
+@xtests:
+ xtests/run.sh
+
+# runs extended tests (using the release mode exa)
+@xtests-release:
+ xtests/run.sh --release
+
+
# lints the code
@clippy:
touch src/main.rs