From c2c83f78f3a63953277ab000f3d323e3da9903d9 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Sun, 7 Apr 2024 08:08:53 +0200 Subject: [PATCH] ci: remove `-stats` flag from tests (#21203) --- .github/workflows/native_backend_tests_ci.yml | 4 ++-- .github/workflows/v_apps_and_modules_compile_ci.yml | 4 ++-- .github/workflows/wasm_backend_tests_ci.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/native_backend_tests_ci.yml b/.github/workflows/native_backend_tests_ci.yml index 3bb4a9a8174ac3..503ebf197be929 100644 --- a/.github/workflows/native_backend_tests_ci.yml +++ b/.github/workflows/native_backend_tests_ci.yml @@ -78,5 +78,5 @@ jobs: - name: Run the native backend tests serially with more details run: | - v -stats vlib/v/gen/native/macho_test.v - v -stats vlib/v/gen/native/tests/native_test.v + v vlib/v/gen/native/macho_test.v + v vlib/v/gen/native/tests/native_test.v diff --git a/.github/workflows/v_apps_and_modules_compile_ci.yml b/.github/workflows/v_apps_and_modules_compile_ci.yml index 016b16174eb40b..443a42769e07f7 100644 --- a/.github/workflows/v_apps_and_modules_compile_ci.yml +++ b/.github/workflows/v_apps_and_modules_compile_ci.yml @@ -146,7 +146,7 @@ jobs: echo "Build Go2V" v /tmp/go2v/ echo "Run Go2V tests" - VJOBS=1 v -stats test /tmp/go2v/ + VJOBS=1 v test /tmp/go2v/ - name: Install UI through VPM and make sure its examples compile run: | @@ -171,7 +171,7 @@ jobs: echo "Build msgpack" v -shared ~/.vmodules/msgpack/ echo "Run msgpack tests" - v -stats test ~/.vmodules/msgpack/ + v test ~/.vmodules/msgpack/ echo "MessagePack examples should compile" v should-compile-all ~/.vmodules/msgpack/examples diff --git a/.github/workflows/wasm_backend_tests_ci.yml b/.github/workflows/wasm_backend_tests_ci.yml index 1878ff1e77427a..04f499301873e9 100644 --- a/.github/workflows/wasm_backend_tests_ci.yml +++ b/.github/workflows/wasm_backend_tests_ci.yml @@ -64,7 +64,7 @@ jobs: sudo ln -s ~/.wasmer/bin/wasmer /usr/local/bin - name: Test the WASM backend - run: ./v -stats test vlib/v/gen/wasm/tests/ + run: ./v test vlib/v/gen/wasm/tests/ wasm-backend-macos: @@ -86,7 +86,7 @@ jobs: sudo ln -s ~/.wasmer/bin/wasmer /usr/local/bin - name: Test the WASM backend - run: ./v -stats test vlib/v/gen/wasm/tests/ + run: ./v test vlib/v/gen/wasm/tests/ # wasm-backend-windows: # runs-on: windows-2022