Skip to content

Commit

Permalink
ci: remove -stats flag from tests (#21203)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm authored Apr 7, 2024
1 parent ad17be5 commit c2c83f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/native_backend_tests_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/v_apps_and_modules_compile_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wasm_backend_tests_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit c2c83f7

Please sign in to comment.