Skip to content

Bump tornado from 6.4.1 to 6.4.2 #3

Bump tornado from 6.4.1 to 6.4.2

Bump tornado from 6.4.1 to 6.4.2 #3

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
services:
es:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2
ports:
- 9200:9200
options: >-
--env http.port=9200
--env discovery.type=single-node
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Wait for Elasticsearch
run: |
sleep 10
curl -s http://localhost:9200
- name: Run tests
run: python3 es_test_data.py --count=1000 --es_url=http://localhost:9200