Skip to content

Commit

Permalink
fix trial
Browse files Browse the repository at this point in the history
  • Loading branch information
luqmanbello committed Oct 3, 2023
1 parent 6fafb82 commit 438af31
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/api-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,26 +49,26 @@ jobs:
run: |
pip install toml pytest uvicorn
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-v1-${{ hashFiles('**/poetry.lock', '**/dev_install.py') }}
# - name: Load cached venv
# id: cached-poetry-dependencies
# uses: actions/cache@v3
# with:
# path: .venv
# key: venv-${{ runner.os }}-v1-${{ hashFiles('**/poetry.lock', '**/dev_install.py') }}

- name: Install obb Dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
python openbb_platform/dev_install.py -e
- name: Populate System Setting Files
run: |
touch ${{ github.workspace }}/openbb_platform/system_settings.json
echo '{"log_collect":false}' > ${{ github.workspace }}/openbb_platform/system_settings.json
touch ${{ github.workspace }}/.openbb_platform/system_settings.json
echo '{"log_collect":false}' > ${{ github.workspace }}/.openbb_platform/system_settings.json
- name: Create and Populate user_settings.json from GitHub Secrets
run: |
touch ${{ github.workspace }}/openbb_platform/user_settings.json
touch ${{ github.workspace }}/.openbb_platform/user_settings.json
echo '{
"credentials": {
"benzinga_api_key": ${{ secrets.BENZINGA_API_KEY }},
Expand All @@ -77,7 +77,7 @@ jobs:
"alpha_vantage_api_key": "${{ secrets.ALPHA_VANTAGE_API_KEY }}",
"fred_api_key": "${{ secrets.FRED_API_KEY }}"
}
}' > ${{ github.workspace }}/openbb_platform/user_settings.json
}' > ${{ github.workspace }}/.openbb_platform/user_settings.json
- name: Launch the Uvicorn Process
run: |
Expand Down

0 comments on commit 438af31

Please sign in to comment.