Skip to content

add progressbar2 to dependencies #9

add progressbar2 to dependencies

add progressbar2 to dependencies #9

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
name: Test Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
pip install -r requirements.txt
- name: Run tests
run: |
pytest --cov=berlinonline.jinjardf --cov-report=xml --cov-append --disable-warnings berlinonline/jinjardf/tests
# - name: Upload coverage reports to Codecov
# run: |
# curl -Os https://uploader.codecov.io/latest/linux/codecov
# chmod +x codecov
# ./codecov