Skip to content

Fix test for python 3.8 - #14

Closed
GilesBourguignon wants to merge 2 commits into
masterfrom
elastic6
Closed

GilesBourguignon wants to merge 2 commits into
masterfrom
elastic6

add python 3.8 to travis

1019d1d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch cancelled Dec 9, 2025 in 1m 20s

Build Canceled

The build canceled.

Details

This is a normal build for the elastic6 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has three jobs, running in parallel.

Job Python OS State
1.1 3.8 Linux failed
1.2 3.7 Linux canceled
1.3 3.6 Linux canceled

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Versions 3.8, 3.7, 3.6
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.8",
    "3.7",
    "3.6"
  ],
  "services": [
    "elasticsearch"
  ],
  "before_install": [
    "curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.7.1.deb && sudo dpkg -i --force-confnew elasticsearch-6.7.1.deb && sudo service elasticsearch start"
  ],
  "script": [
    "while ! nc -z 127.0.0.1 9200; do sleep 1; done;",
    "pip install --upgrade pip",
    "pip install -r requirements.txt",
    "pip install -r requirements-dev.txt",
    "flake8 .",
    "black --check .",
    "pytest",
    "coverage xml -o coverage.xml"
  ],
  "after_success": [
    "codecov -t 8467f17f-e0d1-429d-93f6-8336ccab8248"
  ]
}