Skip to content

Commit daf47a4

Browse files
authored
Merge pull request #76 from mindsdb/fix/api_key_name
change api key name
2 parents b218ee8 + efb17be commit daf47a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test_on_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
pytest tests/integration --disable-warnings
2828
env:
2929
PYTHONPATH: ./
30-
API_KEY: ${{ secrets.API_KEY }}
30+
MINDS_API_KEY: ${{ secrets.MINDS_API_KEY }}
3131
BASE_URL: 'https://mdb.ai'

tests/integration/test_base_flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515

1616
def get_client():
17-
api_key = os.getenv('API_KEY')
18-
base_url = os.getenv('BASE_URL', 'https://dev.mindsdb.com')
17+
api_key = os.getenv('MINDS_API_KEY')
18+
base_url = os.getenv('BASE_URL', 'https://dev.mdb.ai')
1919

2020
return Client(api_key, base_url=base_url)
2121

0 commit comments

Comments
 (0)