get_list_of_depthcaches() returns now only active dcs #303
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test_python_3_8: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GitHub Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coveralls | |
- name: Unit test | |
env: | |
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }} | |
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }} | |
run: coverage run --source unicorn_binance_local_depth_cache unittest_binance_local_depth_cache.py | |
test_python_3_9: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GitHub Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coveralls | |
- name: Unit test | |
env: | |
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }} | |
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }} | |
run: coverage run --source unicorn_binance_local_depth_cache unittest_binance_local_depth_cache.py | |
test_python_3_10: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GitHub Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coveralls | |
- name: Unit test | |
env: | |
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }} | |
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }} | |
run: coverage run --source unicorn_binance_local_depth_cache unittest_binance_local_depth_cache.py | |
test_python_3_11: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GitHub Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coveralls | |
- name: Unit test | |
env: | |
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }} | |
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }} | |
run: coverage run --source unicorn_binance_local_depth_cache unittest_binance_local_depth_cache.py | |
test_python_3_12: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GitHub Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coveralls | |
- name: Unit test | |
env: | |
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }} | |
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }} | |
run: coverage run --source unicorn_binance_local_depth_cache unittest_binance_local_depth_cache.py | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests | |
name: codecov-umbrella | |
verbose: true | |