Skip to content

Merge pull request #113 from neicnordic/dependabot/pip/httpx-0.26.0 #331

Merge pull request #113 from neicnordic/dependabot/pip/httpx-0.26.0

Merge pull request #113 from neicnordic/dependabot/pip/httpx-0.26.0 #331

Workflow file for this run

name: Python Unit Tests
on: [push]
jobs:
unit_test:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install libcurl-devel
run: |
sudo apt update
sudo apt-get install libcurl4-openssl-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run unit tests for python 3.11
if: ${{ matrix.python-version == '3.11' }}
# env:
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: tox -e py311