diff --git a/.github/workflows/test_pytx.yml b/.github/workflows/test_pytx.yml index f3fd6c3..edf1cae 100644 --- a/.github/workflows/test_pytx.yml +++ b/.github/workflows/test_pytx.yml @@ -12,6 +12,10 @@ jobs: uses: actions/checkout@v3 - name: Setup CI tests + env: + organization: ${{ secrets.ORGANIZATION }} + tx_token: ${{ secrets.TX_TOKEN }} run: | pip install -r requirements.txt - python -m unittest discover -s ./tests -p 'test_*.py' + TX_TOKEN=$tx_token ORGANIZATION=$organization \ + python -m unittest discover -s ./tests -p 'test_*.py'