Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leuber bug 246/247 #322

Merged
merged 31 commits into from
Dec 6, 2023

Update urls.py

a303ecc
Select commit
Loading
Failed to load commit list.
Merged

Leuber bug 246/247 #322

Update urls.py
a303ecc
Select commit
Loading
Failed to load commit list.
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"
    }
  ]
}