Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Progress logger in pusher class #2126

Progress logger in pusher class

Progress logger in pusher class #2126

Workflow file for this run

name: Run unittests
on:
pull_request:
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
defaults:
run:
shell: bash
steps:
- if: ${{ env.ACT }}
name: Hack container for local development
run: |
curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set Up Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.3.1
- name: Install dependencies
run: poetry install --sync -v
- name: Run Tests
run: poetry run pytest catalystwan/tests