File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments