Skip to content

Document support for python 3.12 #257

Document support for python 3.12

Document support for python 3.12 #257

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04 # ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest coveralls wheel pytest-asyncio jinja2 respx asyncmock setuptools
pip install -e .
./setup-test-env.sh
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 lightkube/ --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 lightkube/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
coverage run --source=lightkube -m pytest tests/
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} coveralls --service=github
- name: Package (bdist_wheel)
run: |
python setup.py bdist_wheel
- name: Package (sdist)
run: |
python setup.py sdist
- name: Archive artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: |
dist
e2e-test:
strategy:
fail-fast: false
matrix:
k8s: [ '1.25', '1.29' ]
name: E2E test in K8s ${{ matrix.k8s }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-asyncio jinja2 wheel
pip install . "lightkube-models==${{ matrix.k8s }}.*"
- uses: nolar/setup-k3d-k3s@v1
with:
version: v${{ matrix.k8s }}
- run: kubectl version
- run: pytest e2e-tests/