remove TokenInvalid handling from IGSessionCrud #158
Workflow file for this run
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: trading-ig unit tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [ 3.7, 3.8, 3.9 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.5.1 | |
- name: Install dependencies | |
run: | | |
python -m poetry install --extras "pandas munch tenacity" | |
- name: Prettify with black | |
uses: psf/black@stable | |
with: | |
version: "23.3.0" | |
- name: Lint with flake8 | |
run: | | |
python -m poetry run flake8 trading_ig docs sample tests | |
- name: Unit tests with pytest | |
run: | | |
python -m poetry run python -m pytest --ignore=tests/test_integration.py |