Skip to content

Commit

Permalink
Merge 1d76404 into c3b5cfa
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleybl committed Nov 7, 2020
2 parents c3b5cfa + 1d76404 commit 373202d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -37,3 +37,4 @@ pip-selfcheck.json
/.vscode
/.ipython
/.mypy_cache/
.*project
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -47,10 +47,11 @@ before_install:
- echo "[buildout]" > $HOME/.buildout/default.cfg
- echo "download-cache = $HOME/buildout-cache/downloads" >> $HOME/.buildout/default.cfg
- echo "eggs-directory = $HOME/buildout-cache/eggs" >> $HOME/.buildout/default.cfg
- pip install -r requirements.txt
- virtualenv -p `which python` .
- bin/pip install -r requirements.txt
install:
- sed -ie "s#plone-x.x.x.cfg#plone-$PLONE_VERSION.cfg#" travis.cfg
- buildout -t 10 -c travis.cfg
- bin/buildout -t 10 -c travis.cfg
script:
- if [ "$PLONE_VERSION" == "5.2.x" ] && [ $TRAVIS_PYTHON_VERSION == '3.7' ]; then pip install black && black src/ --check; fi
- bin/code-analysis
Expand Down
2 changes: 2 additions & 0 deletions news/1012.bugfix
@@ -0,0 +1,2 @@
- Fix tests in Travis.
[wesleybl]
8 changes: 7 additions & 1 deletion plone-5.2.x.cfg
Expand Up @@ -16,4 +16,10 @@ plone.schema = 1.2.1
# requirement for the @types endpoint enhancements
# https://github.com/plone/plone.restapi/pull/951
# https://github.com/plone/plone.schemaeditor/pull/77
plone.schemaeditor = 3.0.1
plone.schemaeditor = 3.0.1

# Error: The requirement ('pep517>=0.9') is not allowed by your [versions] constraint (0.8.2)
pep517 = 0.9.1

# Error: The requirement ('virtualenv>=20.0.35') is not allowed by your [versions] constraint (20.0.26)
virtualenv = 20.0.35

0 comments on commit 373202d

Please sign in to comment.