diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9af8cb..a99de7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,6 @@ on: pull_request: env: - DEVELOPER_NODE: 1 RETAILCRM_URL: https://test.retailcrm.pro RETAILCRM_KEY: key diff --git a/client_test.go b/client_test.go index f144fa6..c57b70c 100644 --- a/client_test.go +++ b/client_test.go @@ -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() {