Fix test for python 3.8 - #14
Closed
GilesBourguignon wants to merge 2 commits into
Closed
GilesBourguignon wants to merge 2 commits into
GilesBourguignon wants to merge 2 commits into
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 |
|---|---|---|---|
| 3.8 | Linux | failed | |
| 3.7 | Linux | canceled | |
| 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"
]
}
Loading