Authentication with OpenID Connect providers #713

Merged
konrad merged 37 commits from feature/openid into master 2020-11-21 16:38:59 +00:00
Showing only changes of commit 38829a800b - Show all commits

View File

@ -20,11 +20,15 @@ import (
"os" "os"
"testing" "testing"
"code.vikunja.io/api/pkg/files"
"code.vikunja.io/api/pkg/models"
"code.vikunja.io/api/pkg/user" "code.vikunja.io/api/pkg/user"
) )
// TestMain is the main test function used to bootstrap the test env // TestMain is the main test function used to bootstrap the test env
func TestMain(m *testing.M) { func TestMain(m *testing.M) {
user.InitTests() user.InitTests()
files.InitTests()
models.SetupTests()
os.Exit(m.Run()) os.Exit(m.Run())
} }