2019-10-29 20:54:47 +00:00
|
|
|
package main
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
import (
|
2019-11-17 10:47:07 +00:00
|
|
|
"github.com/clems4ever/authelia/internal/utils"
|
2019-11-02 14:32:58 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
2019-10-29 20:54:47 +00:00
|
|
|
|
|
|
|
// RunUnitTest run the unit tests
|
|
|
|
func RunUnitTest(cobraCmd *cobra.Command, args []string) {
|
2019-11-16 19:50:58 +00:00
|
|
|
log.SetLevel(log.TraceLevel)
|
2019-11-02 14:32:58 +00:00
|
|
|
err := utils.Shell("go test $(go list ./... | grep -v suites)").Run()
|
2019-10-29 20:54:47 +00:00
|
|
|
if err != nil {
|
2019-11-02 14:32:58 +00:00
|
|
|
log.Fatal(err)
|
2019-10-29 20:54:47 +00:00
|
|
|
}
|
|
|
|
}
|