Skip to content

Commit

Permalink
debug binary execution in windows
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo Chacin <[email protected]>
  • Loading branch information
pablochacin committed Feb 21, 2025
1 parent 14fa6d5 commit f7f7ca7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test -race -count 1 ./...
run: go test -v -race -count 1 ./...

- name: Coverage Test
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'main' }}
Expand Down
2 changes: 2 additions & 0 deletions cmd/state_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ func Test_interal_state(t *testing.T) {

require.True(t, exists(t, st.cmd.Path))

t.Logf("Running k6 from %s", st.cmd.Path)

err = st.runE(nil, nil)

require.NoError(t, err)
Expand Down

0 comments on commit f7f7ca7

Please sign in to comment.