We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b218ee8 commit efb17beCopy full SHA for efb17be
.github/workflows/test_on_deploy.yml
@@ -27,5 +27,5 @@ jobs:
27
pytest tests/integration --disable-warnings
28
env:
29
PYTHONPATH: ./
30
- API_KEY: ${{ secrets.API_KEY }}
+ MINDS_API_KEY: ${{ secrets.MINDS_API_KEY }}
31
BASE_URL: 'https://mdb.ai'
tests/integration/test_base_flow.py
@@ -14,8 +14,8 @@
14
15
16
def get_client():
17
- api_key = os.getenv('API_KEY')
18
- base_url = os.getenv('BASE_URL', 'https://dev.mindsdb.com')
+ api_key = os.getenv('MINDS_API_KEY')
+ base_url = os.getenv('BASE_URL', 'https://dev.mdb.ai')
19
20
return Client(api_key, base_url=base_url)
21
0 commit comments