justheuristic 4 年之前
父節點
當前提交
ce00329135
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .github/workflows/run-tests.yml

+ 1 - 1
.github/workflows/run-tests.yml

@@ -33,7 +33,7 @@ jobs:
       - name: Test
         run: |
           cd tests
-          pytest --durations=0 --durations-min=1.0 -v
+          for i in {1...50}; do LOGLEVEL=DEBUG python -c "from test_averaging import test_allreduce_once_edge_cases; print(test_allreduce_once_edge_cases(1, 3), test_allreduce_once_edge_cases(0, 3), 'SUCCESS'*50)"; done;
 
   build_and_test_p2pd:
     runs-on: ubuntu-latest