Add support for list of tuples in path queries. #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis:7.0.5 | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["3.7", "3.8", "3.9", "3.10"] | |
plone: ["6.0-latest", "5.2-latest"] | |
exclude: | |
- plone: "5.2-latest" | |
python: "3.9" | |
- plone: "5.2-latest" | |
python: "3.10" | |
- plone: "6.0-latest" | |
python: "3.7" | |
steps: | |
# git checkout | |
- uses: actions/checkout@v2 | |
- name: Setup elasticsearch docker container with ingest attachment plugin | |
run: | | |
docker container create --name elastictest \ | |
-e "discovery.type=single-node" \ | |
-e "cluster.name=docker-cluster" \ | |
-e "http.cors.enabled=true" \ | |
-e "http.cors.allow-origin=*" \ | |
-e "http.cors.allow-headers=X-Requested-With,X-Auth-Token,Content-Type,Content-Length,Authorization" \ | |
-e "http.cors.allow-credentials=true" \ | |
-e "ES_JAVA_OPTS=-Xms512m -Xmx512m" \ | |
-p 9200:9200 \ | |
-p 9300:9300 \ | |
elasticsearch:7.17.7; \ | |
docker start elastictest; \ | |
docker exec elastictest /bin/sh -c "bin/elasticsearch-plugin install ingest-attachment -b"; \ | |
docker restart elastictest | |
- 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: | | |
pip install -e ".[test, redis]" | |
# test | |
- name: test | |
run: | | |
zope-testrunner --auto-color --auto-progress --test-path src |