Skip to content

Commit

Permalink
Update env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthenian8 committed Dec 4, 2023
1 parent 881826e commit fa2d619
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ jobs:
TG_API_HASH: ${{ secrets.TG_API_HASH }}
TG_BOT_USERNAME: ${{ secrets.TG_BOT_USERNAME }}
HF_API_KEY: ${{ secrets.HF_API_KEY }}
GDF_ACCOUNT_JSON: ./gdf_account.json
GDF_ACCOUNT_JSON: ${{ env.GDF_ACCOUNT_JSON }}
run: |
make test TEST_ALLOW_SKIP=telegram
4 changes: 2 additions & 2 deletions .github/workflows/test_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
TG_API_HASH: ${{ secrets.TG_API_HASH }}
TG_BOT_USERNAME: ${{ secrets.TG_BOT_USERNAME }}
HF_API_KEY: ${{ secrets.HF_API_KEY }}
GDF_ACCOUNT_JSON: ./gdf_account.json
GDF_ACCOUNT_JSON: ${{ env.GDF_ACCOUNT_JSON }}
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source <(cat .env_file | sed 's/=/=/' | sed 's/^/export /')
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
TG_API_HASH: ${{ secrets.TG_API_HASH }}
TG_BOT_USERNAME: ${{ secrets.TG_BOT_USERNAME }}
HF_API_KEY: ${{ secrets.HF_API_KEY }}
GDF_ACCOUNT_JSON: ./gdf_account.json
GDF_ACCOUNT_JSON: ${{ env.GDF_ACCOUNT_JSON }}
run: |
source <(cat .env_file | sed 's/=/=/' | sed 's/^/export /')
pytest --tb=long -vv --cache-clear --no-cov --allow-skip=all tests/
Expand Down

0 comments on commit fa2d619

Please sign in to comment.