gosec/analyzers/anaylzers_suite_test.go
Rahul Gadi 81cda2f91f
Allow excluding analyzers globally (#1180)
* This change does not exclude analyzers for inline comment
* Changed the expected issues count for G103, G109 samples for test. Previously G115 has been included in the issue count
* Show analyzers IDs(G115, G602) in gosec usage help
* See #1175
2024-08-20 10:43:40 +02:00

13 lines
203 B
Go

package analyzers_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestAnalyzers(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Analyzers Suite")
}