remove useless environment variable

This commit is contained in:
Pavel 2021-10-26 19:23:00 +03:00
parent acb7963d15
commit 0870d18c2b
2 changed files with 5 additions and 8 deletions

View file

@ -9,7 +9,6 @@ on:
pull_request:
env:
DEVELOPER_NODE: 1
RETAILCRM_URL: https://test.retailcrm.pro
RETAILCRM_KEY: key

View file

@ -20,14 +20,12 @@ import (
)
func TestMain(m *testing.M) {
if os.Getenv("DEVELOPER_NODE") == "1" {
err := godotenv.Load("../.env")
if err != nil {
log.Fatal("Error loading .env file")
}
os.Exit(m.Run())
err := godotenv.Load(".env")
if err != nil {
log.Fatal("Error loading .env file")
}
os.Exit(m.Run())
}
func init() {