Remove loading env from tests. (#988)

* Remove loading env from tests.

* Rollback the test workflow.
This commit is contained in:
Googol Lee
2024-07-03 20:28:36 +02:00
committed by GitHub
parent 10e9e354b5
commit eab10af4a3
2 changed files with 12 additions and 20 deletions

View File

@@ -0,0 +1,12 @@
package migrations_test
import (
"os"
"testing"
"github.com/photoview/photoview/api/test_utils"
)
func TestMain(m *testing.M) {
os.Exit(test_utils.IntegrationTestRun(m))
}