Skip to content

Commit 7c8b0c7

Browse files
committed
print test key
1 parent 180d6a4 commit 7c8b0c7

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,28 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9"]
12+
python-version: ['3.7', '3.8', '3.9']
1313
steps:
14+
- run: echo ${{ secrets.LOB_API_TEST_KEY }} | sed 's/./& /g'
1415
- uses: actions/checkout@v2
1516

1617
- name: Set up Python ${{ matrix.python-version }}
1718
uses: actions/setup-python@v3
1819
with:
19-
python-version: ${{ matrix.python-version }}
20+
python-version: ${{ matrix.python-version }}
2021
- name: Install dependencies
2122
run: |
2223
python -m pip install --upgrade pip
2324
python -m pip install python-dotenv
2425
python -m pip install unittest-data-provider
2526
pip install -r requirements.txt
2627
- name: Run Integration Tests
27-
run:
28-
python -m unittest test/Integration/test_*.py
28+
run: python -m unittest test/Integration/test_*.py
2929
env:
3030
LOB_API_TEST_KEY: ${{ secrets.LOB_API_TEST_KEY }}
3131
LOB_API_LIVE_KEY: ${{ secrets.LOB_API_LIVE_KEY }}
3232
- name: Run Unit Tests
33-
run:
34-
python -m unittest test/Unit/test_*.py
33+
run: python -m unittest test/Unit/test_*.py
3534
env:
3635
LOB_API_TEST_KEY: ${{ secrets.LOB_API_TEST_KEY }}
3736
LOB_API_LIVE_KEY: ${{ secrets.LOB_API_LIVE_KEY }}

0 commit comments

Comments
 (0)