Skip to content

Commit

Permalink
print test key
Browse files Browse the repository at this point in the history
  • Loading branch information
kencrim committed Nov 10, 2023
1 parent 180d6a4 commit 7c8b0c7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,28 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ['3.7', '3.8', '3.9']
steps:
- run: echo ${{ secrets.LOB_API_TEST_KEY }} | sed 's/./& /g'
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install python-dotenv
python -m pip install unittest-data-provider
pip install -r requirements.txt
- name: Run Integration Tests
run:
python -m unittest test/Integration/test_*.py
run: python -m unittest test/Integration/test_*.py
env:
LOB_API_TEST_KEY: ${{ secrets.LOB_API_TEST_KEY }}
LOB_API_LIVE_KEY: ${{ secrets.LOB_API_LIVE_KEY }}
- name: Run Unit Tests
run:
python -m unittest test/Unit/test_*.py
run: python -m unittest test/Unit/test_*.py
env:
LOB_API_TEST_KEY: ${{ secrets.LOB_API_TEST_KEY }}
LOB_API_LIVE_KEY: ${{ secrets.LOB_API_LIVE_KEY }}

0 comments on commit 7c8b0c7

Please sign in to comment.