Leuber bug 246/247 #322
+275
−185
Merged
Leuber bug 246/247 #322
Travis CI / Travis CI - Branch
succeeded
Dec 5, 2023 in 5m 45s
Build Passed
The build passed.
Details
This is a normal build for the Leuber-Bug-246/247 branch. You should be able to reproduce it by checking out the branch locally.
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 (Bionic) |
Python Version | 3.11 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "bionic",
"python": [
"3.11"
],
"install": [
"pip install -r requirements.txt",
"pip install coveralls",
"mkdir ./tools",
"curl -L https://coveralls.io/coveralls-linux.tar.gz | tar -xz -C ./tools"
],
"before_script": [
"python manage.py migrate --settings=roleplaydate.test_settings"
],
"script": [
"black --check .",
"flake8 .",
"coverage run manage.py test --settings=roleplaydate.test_settings",
"coverage xml",
"./tools/coveralls report --repo-token=$COVERALLS_REPO_TOKEN ./coverage.xml"
],
"after_script": [
"coveralls"
],
"deploy": [
{
"verbose": true,
"provider": "elasticbeanstalk",
"access_key_id": "$AWS_ACCESS_KEY_ID",
"secret_access_key": "$AWS_SECRET_ACCESS_KEY",
"region": "us-east-1",
"app": "roleplaydate",
"env": "roleplaydate-dev3",
"on": {
"branch": [
"develop"
]
},
"bucket": "$S3_BUCKET_NAME"
},
{
"verbose": true,
"provider": "elasticbeanstalk",
"access_key_id": "$AWS_ACCESS_KEY_ID2",
"secret_access_key": "$AWS_SECRET_ACCESS_KEY2",
"region": "us-east-1",
"app": "roleplaydate",
"env": "roleplaythendatemaster",
"on": {
"branch": [
"master"
]
},
"bucket": "$S3_BUCKET_NAME2"
}
]
}
Loading