Bump urllib3 from 1.26.5 to 1.26.18 #49
Closed
Travis CI / Travis CI - Pull Request
succeeded
Oct 18, 2023 in 1m 54s
Build Passed
The build passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #49 Bump urllib3 from 1.26.5 to 1.26.18.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Xenial) |
Python Version | 3.6 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "xenial",
"sudo": true,
"python": [
"3.6"
],
"install": [
"pip install -r requirements.txt",
"pip install -r test-requirements.txt"
],
"before_script": [
"docker build -t couchdb-cluster - < docker-couchdb-cluster/Dockerfile",
"docker run -d --name couchdb-cluster -p 15984:15984 -p 15986:15986 -p 25984:25984 -p 25986:25986 -p 35984:35984 -p 35986:35986 -p 45984:45984 -p 45986:45986 -v $(pwd)/data:/usr/src/couchdb/dev/lib/ -t couchdb-cluster --with-admin-party-please -n 4",
"while :\ndo\n curl http://localhost:15984/${db_name} -sv 2>&1 | grep '^< HTTP/.* 200 OK' && break || continue\n sleep 1\ndone\n"
],
"script": [
"py.test tests.py"
],
"services": [
"docker"
]
}
Loading