From 23b63323d4327364f5323886fdc61ca1fb866f59 Mon Sep 17 00:00:00 2001 From: why-not-try-calmer Date: Tue, 14 Feb 2023 16:29:29 +0100 Subject: [PATCH] ci envars --- .github/workflows/test_pytx.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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'