3535
3636 - name : Test (windows)
3737 run : |
38- cargo test --verbose -- --test-threads 1
38+ cargo test --verbose -- --test-threads 1 --nocapture
3939
4040 build-test-win-ng :
4141 runs-on : windows-latest
6262 cargo build --verbose --no-default-features --features quickjs-ng
6363 - name : Test (windows)
6464 run : |
65- cargo test --verbose --no-default-features --features quickjs-ng -- --test-threads 1
65+ cargo test --verbose --no-default-features --features quickjs-ng -- --test-threads 1 --nocapture
6666
6767 build-test-win-msvc-ng :
6868 runs-on : windows-latest
8888
8989 - name : Test (windows)
9090 run : |
91- cargo test --verbose --no-default-features --features quickjs-ng -- --test-threads 1
91+ cargo test --verbose --no-default-features --features quickjs-ng -- --test-threads 1 --nocapture
9292
9393 build-test-mac :
9494 runs-on : macOS-latest
9797 - name : Build
9898 run : cargo build
9999 - name : Run tests
100- run : cargo test --verbose -- --test-threads 1
100+ run : cargo test --verbose -- --test-threads 1 --nocapture
101101
102102 build-test-mac-ng :
103103 runs-on : macOS-latest
@@ -106,7 +106,7 @@ jobs:
106106 - name : Build
107107 run : cargo build --verbose --no-default-features --features quickjs-ng
108108 - name : Run tests
109- run : cargo test --verbose --no-default-features --features quickjs-ng -- --test-threads 1
109+ run : cargo test --verbose --no-default-features --features quickjs-ng -- --test-threads 1 --nocapture
110110
111111 build-ubuntu-quickjs-ng :
112112 runs-on : ubuntu-latest
@@ -117,7 +117,7 @@ jobs:
117117 sudo apt update
118118 sudo apt install llvm autoconf2.13 automake clang -y
119119 - name : Run tests
120- run : cargo test --no-default-features --features "quickjs-ng console setimmediate setinterval settimeout typescript" -- --test-threads 1
120+ run : cargo test --no-default-features --features "quickjs-ng console setimmediate setinterval settimeout typescript" -- --test-threads 1 --nocapture
121121
122122 build :
123123 runs-on : ubuntu-latest
@@ -161,7 +161,7 @@ jobs:
161161 run : |
162162 curl -X POST https://api.github.com/repos/${{ github.repository }}/pages/builds -H "Accept: application/vnd.github.mister-fantastic-preview+json" -u ${{ github.actor }}:${{ secrets.GH_TOKEN }}
163163 - name : Run tests
164- run : cargo test --verbose -- --test-threads 1
164+ run : cargo test --verbose -- --test-threads 1 --nocapture
165165 - name : Clippy check
166166 uses : actions-rs/clippy-check@v1
167167 with :
0 commit comments