Browse Source

grouping to make it better

Thibault bui Koechlin 5 năm trước cách đây
mục cha
commit
02cc5e2b88
1 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 6 1
      .github/workflows/hub-ci.yml

+ 6 - 1
.github/workflows/hub-ci.yml

@@ -30,4 +30,9 @@ jobs:
       run: pwd && cd hub-tests && bash -x ./prep_tests.sh && cd ..
     - name: Run the tests
       working-directory: crowdsec-pull/tests/
-      run: for i in `find ./tests -mindepth 1 -maxdepth 1 -type d` ; do echo "Testing $i" ; ./main $i || (echo "::error file=${i}::Failed test for ${i}" ; diff ${i}"/results.yaml" ${i}"/results.yaml.fail") ; done 
+      run: |
+      for i in `find ./tests -mindepth 1 -maxdepth 1 -type d` ; do 
+        echo "::group::Test-${i}" ; 
+        ./main $i || (echo "::error file=${i}::Failed test for ${i}" ; diff ${i}"/results.yaml" ${i}"/results.yaml.fail") ;
+        echo "::endgroup::
+      done