Skip to content

Added BaseFormSetFactory.form_kwargs and .get_form_kwargs(). #47

Added BaseFormSetFactory.form_kwargs and .get_form_kwargs().

Added BaseFormSetFactory.form_kwargs and .get_form_kwargs(). #47

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
LATEST_PYTHON_VERSION: "3.12"
jobs:
tests:
if: github.repository == 'AndrewIngram/django-extra-views'
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }} tests
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 dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Run tests with tox
run: tox
- name: Upload coverage.xml
if: ${{ matrix.python-version == env.LATEST_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
with:
name: django-extra-views-coverage
path: coverage.xml
if-no-files-found: error
# Disabling until access is available to install Codecov App.
# - name: Upload coverage.xml to Codecov
# if: ${{ matrix.python-version == env.LATEST_PYTHON_VERSION }}
# uses: codecov/codecov-action@v4
# with:
# fail_ci_if_error: true
lint:
if: github.repository == 'AndrewIngram/django-extra-views'
runs-on: ubuntu-latest
strategy:
matrix:
tox-arg: [black, isort, flake8]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.LATEST_PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: ${{ matrix.tox-arg }}
run: tox -e ${{ matrix.tox-arg }}