Просмотр исходного кода

doc(just): add deprecation warning to just xtest commands

Signed-off-by: Sandro-Alessio Gierens <sandro@gierens.de>
Sandro-Alessio Gierens 2 лет назад
Родитель
Сommit
c1690d115e
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      Justfile

+ 4 - 0
Justfile

@@ -46,14 +46,17 @@ alias itest := integration_tests
 
 
 # run extended tests
 # run extended tests
 @xtests:
 @xtests:
+    echo "XTESTS ARE DEPRECATED DON'T USE"
     xtests/run.sh
     xtests/run.sh
 
 
 # run extended tests (using the release mode exa)
 # run extended tests (using the release mode exa)
 @xtests-release:
 @xtests-release:
+    echo "XTESTS ARE DEPRECATED DON'T USE"
     xtests/run.sh --release
     xtests/run.sh --release
 
 
 # display the number of extended tests that get run
 # display the number of extended tests that get run
 @count-xtests:
 @count-xtests:
+    echo "XTESTS ARE DEPRECATED DON'T USE"
     grep -F '[[cmd]]' -R xtests | wc -l
     grep -F '[[cmd]]' -R xtests | wc -l
 
 
 
 
@@ -84,6 +87,7 @@ alias itest := integration_tests
 
 
 # build exa and run extended tests with features disabled
 # build exa and run extended tests with features disabled
 @feature-checks *args:
 @feature-checks *args:
+    echo "XTESTS ARE DEPRECATED DON'T USE"
     cargo build --no-default-features
     cargo build --no-default-features
     specsheet xtests/features/none.toml -shide {{args}} \
     specsheet xtests/features/none.toml -shide {{args}} \
         -O cmd.target.exa="${CARGO_TARGET_DIR:-../../target}/debug/exa"
         -O cmd.target.exa="${CARGO_TARGET_DIR:-../../target}/debug/exa"