Skip to content

Fix: Bad import line in tradingstrategty.utils.wrangle making the lib… #13

Fix: Bad import line in tradingstrategty.utils.wrangle making the lib…

Fix: Bad import line in tradingstrategty.utils.wrangle making the lib… #13

name: Automated test suite wo/optional deps
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
automated-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set up Python 3.12
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction
- name: Run test scripts
run: |
poetry run pytest -k test_no_opt_deps