mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
remove useless environment variable
This commit is contained in:
parent
acb7963d15
commit
0870d18c2b
2 changed files with 5 additions and 8 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -9,7 +9,6 @@ on:
|
|||
pull_request:
|
||||
|
||||
env:
|
||||
DEVELOPER_NODE: 1
|
||||
RETAILCRM_URL: https://test.retailcrm.pro
|
||||
RETAILCRM_KEY: key
|
||||
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue