Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for gotestsum (0.21 sec)

  1. LICENSES/third_party/forked/gotestsum/NOTICE

       Copyright The gotestsum Authors.
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
       You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
       Unless required by applicable law or agreed to in writing, software
       distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 01 18:49:15 UTC 2022
    - 588 bytes
    - Viewed (0)
  2. hack/make-rules/test.sh

        return
      fi
    
      local junit_xml_filename
      junit_xml_filename="${junit_filename_prefix}.xml"
    
      if ! command -v gotestsum >/dev/null 2>&1; then
        kube::log::status "gotestsum not found; installing from ./hack/tools"
        go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
      fi
      gotestsum --junitfile "${junit_xml_filename}" --raw-command cat "${junit_filename_prefix}"*.stdout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/issue29755.test

            --- PASS: TestOutputWithSubtest/sub_test2/sub2 (0.00s)
                foo_test.go:26: output from sub2 test
        foo_test.go:32: output after sub test
    FAIL
    FAIL	gotest.tools/gotestsum/foo	0.001s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. hack/tools/tools.go

    	_ "github.com/jcchavezs/porto/cmd/porto"
    	_ "honnef.co/go/tools/cmd/staticcheck"
    	_ "sigs.k8s.io/logtools/logcheck"
    
    	// benchmarking tools
    	_ "github.com/cespare/prettybench"
    	_ "gotest.tools/gotestsum"
    
    	// mockgen
    	_ "go.uber.org/mock/mockgen"
    
    	// tools like cpu
    	_ "go.uber.org/automaxprocs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. hack/jenkins/test-dockerized.sh

    # As individual scripts make use of go modules, they can explicitly set GO111MODULE=on
    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "./hack/tools" install gotest.tools/gotestsum
    
    # Disable coverage report
    export KUBE_COVER="n"
    # Set artifacts directory
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    # Save the verbose stdout as well.
    export KUBE_KEEP_VERBOSE_TEST_OUTPUT=y
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test2"}
    {"Action":"fail","Test":"TestOutputWithSubtest"}
    {"Action":"output","Output":"FAIL\n"}
    {"Action":"output","Output":"FAIL\tgotest.tools/gotestsum/foo\t0.001s\n"}
    {"Action":"output","Output":"FAIL\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. hack/jenkins/benchmark-dockerized.sh

    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install github.com/cespare/prettybench
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
    
    # Disable the Go race detector.
    export KUBE_RACE=" "
    # Disable coverage report
    export KUBE_COVER="n"
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    export FULL_LOG="true"
    
    mkdir -p "${ARTIFACTS}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. cmd/prune-junit-xml/prunexml.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"encoding/xml"
    	"flag"
    	"fmt"
    	"io"
    	"os"
    	"regexp"
    
    	"k8s.io/kubernetes/third_party/forked/gotestsum/junitxml"
    )
    
    func main() {
    	maxTextSize := flag.Int("max-text-size", 1, "maximum size of attribute or text (in MB)")
    	pruneTests := flag.Bool("prune-tests", true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. hack/tools/go.mod

    	github.com/client9/misspell v0.3.4
    	github.com/golangci/golangci-lint v1.56.2
    	github.com/jcchavezs/porto v0.6.0
    	go.uber.org/automaxprocs v1.5.2
    	go.uber.org/mock v0.4.0
    	gotest.tools/gotestsum v1.6.4
    	honnef.co/go/tools v0.4.6
    	sigs.k8s.io/logtools v0.8.1
    )
    
    require (
    	4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
    	4d63.com/gochecknoglobals v0.2.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. hack/tools/go.sum

    gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
    gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
    gotest.tools/gotestsum v1.6.4 h1:HFkapG0hK/HWiOxWS78SbR/JK5EpbH8hFzUuCvvfbfQ=
    gotest.tools/gotestsum v1.6.4/go.mod h1:fTR9ZhxC/TLAAx2/WMk/m3TkMB9eEI89gdEzhiRVJT8=
    gotest.tools/v3 v3.0.3 h1:4AuOwCGf4lLR9u3YOe2awrHygurzhO/HeQ6laiA6Sx0=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
Back to top