Fix to SSL issues on clients connecting with older TLS servers #39
Travis CI / Travis CI - Branch
required action
Jan 18, 2024 in 10m 43s
Build Errored
The build errored. This is a change from the previous build, which passed.
Details
This is a normal build for the joamag/ssl-exploration branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has eight jobs, running in parallel.
Job | Python | ENV | OS | State |
---|---|---|---|---|
4084.1 | 2.7 | HTTPBIN=httpbin.bemisc.com | Linux | passed |
4084.2 | 3.4 | HTTPBIN=httpbin.bemisc.com | Linux | errored |
4084.3 | 3.5 | HTTPBIN=httpbin.bemisc.com | Linux | errored |
4084.4 | 3.6 | HTTPBIN=httpbin.bemisc.com | Linux | errored |
4084.5 | pypy3 | HTTPBIN=httpbin.bemisc.com | Linux | errored |
4084.6 | 3.8 | HTTPBIN=httpbin.bemisc.com | Linux | errored |
4084.7 | pypy | HTTPBIN=httpbin.bemisc.com | Linux | errored |
4084.8 | pypy3 | HTTPBIN=httpbin.bemisc.com | Linux | errored |
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Trusty) |
Python Versions | 2.7, 3.4, 3.5, 3.6, pypy3 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "trusty",
"python": [
"2.7",
"3.4",
"3.5",
"3.6",
"pypy3"
],
"before_install": [
"pip install --upgrade pip setuptools"
],
"install": [
"pip install -r requirements.txt",
"if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi"
],
"env": [
"jobs={:HTTPBIN=>\"httpbin.bemisc.com\"}"
],
"script": [
"if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=netius setup.py test; else python setup.py test; fi"
],
"after_success": [
"if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi"
],
"notifications": {
"slack": [
{
"rooms": [
"hivesolutions:838m5XXohsuxjWI0mSzghWOK"
]
}
]
},
"jobs": {
"include": [
{
"python": "3.8",
"dist": "xenial"
},
{
"python": "pypy",
"dist": "xenial"
},
{
"python": "pypy3",
"dist": "xenial"
}
]
}
}
Loading