Skip to content

Fix deprecation warnings #8

Fix deprecation warnings

Fix deprecation warnings #8

Workflow file for this run

name: tests
on:
push
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
pip install requests pytest-cov coveralls mock
pip install -e .
- name: Set up graylog
run: |
docker compose -f tests/config/docker-compose.yml up -d
sleep 120
./tests/config/bootstrap
- name: Run tests
run: pytest -v --cov=pygelf