Skip to content

Commit

Permalink
Attempt to get all tests to pass with a special config for Plone 6 on…
Browse files Browse the repository at this point in the history
… Python 3.8
  • Loading branch information
stevepiercy committed Jul 27, 2024
1 parent 0371c15 commit a24162d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

# buildout
- name: buildout
run: buildout -t 10 -c plone-${{ matrix.plone-version }}.x.cfg
run: if [ "${{ matrix.plone-version }}" == "6.0" ] && [ ${{ matrix.python-version }} == '3.8' ]; then buildout -t 10 -c plone-6.0.x-python3.8.cfg; else buildout -t 10 -c plone-${{ matrix.plone-version }}.x.cfg; fi;
env:
CI: true

Expand Down
22 changes: 22 additions & 0 deletions plone-6.0.x-python3.8.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[buildout]
extends =
https://dist.plone.org/release/6.0.11.1/versions.cfg
base.cfg

[buildout:python37]
parts =
test
code-analysis

[instance]
recipe = plone.recipe.zope2instance
zodb-temporary-storage = off

[versions]
pygments = 2.14.0
plone.app.linkintegrity = 4.0.3
robotframework-browser = 17.5.2
robotframework-assertion-engine = 2.0.0
robotframework-debuglibrary = 2.3.0
robotframework-pythonlibcore = 4.2.0
grpcio-tools = 1.59.0

0 comments on commit a24162d

Please sign in to comment.