Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IEasyFormWidget marker for GroupForm widgets #374

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 32 additions & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
name: tests
name: Tests

on:
push:
branches: [ master ]
branches: master
pull_request:
branches: [ master, 3.x ]
branches: master
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
# [Python version, tox env]
- ["3.8", "plone60-py38"]
- ["3.9", "plone60-py39"]
- ["3.10", "plone60-py310"]
runs-on: ubuntu-latest
name: ${{ matrix.config[1] }}
python:
- "3.8"
- "3.9"
- "3.10"
plone:
- "6.0-dev"

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.config[0] }}
- name: Pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.config[0] }}-${{ hashFiles('setup.*', 'tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.config[0] }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
run: tox -e ${{ matrix.config[1] }}
- uses: actions/checkout@v2

- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }}
id: setup
uses: plone/[email protected]
with:
python-version: ${{ matrix.python }}
plone-version: ${{ matrix.plone }}

- name: Install package
run: |
make install

- name: Run Lint
run: |
make lint

- name: Run tests
run: |
make test-ignore-warnings
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,11 @@ var/
pyvenv.cfg
/venv/
/.vscode
local.cfg
local.cfg

.*.cfg
*-mxdev.txt
/.make-sentinels/
sources/
.installed.txt
stamp-yarn
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Changelog
- Schemaeditor UI: close modals and reload fields(sets) when saving.
[petschki]

- Fix bug which did not render correctly GroupForm widgets (see #370)
[petschki]


4.1.0 (2022-08-10)
------------------
Expand Down
Loading