Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
fix secret
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids authored Dec 2, 2024
1 parent b0c20d1 commit b981ab7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,31 @@ jobs:
- name: Test API
env:
organization: ${{ secrets.ORGANIZATION }}
organization: ${{ secrets.TX_ORGANIZATION }}
tx_token: ${{ secrets.TX_TOKEN }}
run: |
TX_TOKEN=$tx_token ORGANIZATION=$organization \
python -m unittest ./tests/test_api.py
- name: Test CLI
env:
organization: ${{ secrets.ORGANIZATION }}
organization: ${{ secrets.TX_ORGANIZATION }}
tx_token: ${{ secrets.TX_TOKEN }}
run: |
TX_TOKEN=$tx_token ORGANIZATION=$organization \
python -m unittest ./tests/test_cli.py
- name: Test with a public project
env:
organization: ${{ secrets.ORGANIZATION }}
organization: ${{ secrets.TX_ORGANIZATION }}
tx_token: ${{ secrets.TX_TOKEN }}
run: |
TX_TOKEN=$tx_token ORGANIZATION=$organization \
python -m unittest ./tests/test_public_project.py
- name: Test with Qgisplugin's 'test_translation'
env:
organization: ${{ secrets.ORGANIZATION }}
organization: ${{ secrets.TX_ORGANIZATION }}
tx_token: ${{ secrets.TX_TOKEN }}
run: |
TX_TOKEN=$tx_token ORGANIZATION=$organization \
Expand Down

0 comments on commit b981ab7

Please sign in to comment.