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

Wip/optional initiatives #6315

Open
wants to merge 7 commits into
base: release/upgrade-django
Choose a base branch
from

Merge branch 'release/upgrade-django' into wip/optional-initiatives

86e0d14
Select commit
Loading
Failed to load commit list.
Open

Wip/optional initiatives #6315

Merge branch 'release/upgrade-django' into wip/optional-initiatives
86e0d14
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Mar 7, 2025 in 4m 37s

Build Failed

The build failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #6317 Demo/optional initiatives.
Any changes that have been made to the release/upgrade-django 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 (Focal)
Python Version 3.9
Build Configuration
{
  "dist": "focal",
  "sudo": false,
  "language": "python",
  "addons": {
    "postgresql": "13",
    "apt": {
      "packages": [
        "libxmlsec1",
        "libxmlsec1-dev",
        "libgdal-dev",
        "swig",
        "openjdk-8-jdk-headless",
        "postgresql-client-13",
        "postgresql-13-postgis-2.5",
        "postgis"
      ]
    }
  },
  "cache": "pip - \"$HOME/.cache/pip/\" - \"$HOME/virtualenv/python2.7.15/lib/python2.7/site-packages\"",
  "python": [
    3.9
  ],
  "services": [
    "postgresql",
    "elasticsearch"
  ],
  "before_install": [
    "echo 'xpack.security.enabled: false' | sudo tee -a /etc/elasticsearch/elasticsearch.yml",
    "sudo systemctl restart elasticsearch",
    "sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\\|md5/trust/g' /etc/postgresql/*/main/pg_hba.conf",
    "sudo service postgresql restart",
    "sleep 1",
    "postgres --version",
    "createdb test_bluebottle_test",
    "psql test_bluebottle_test < testdata.sql",
    "psql -c \"CREATE USER testuser WITH PASSWORD 'password'\"",
    "psql -c \"ALTER ROLE testuser SUPERUSER\""
  ],
  "install": [
    "pip install pip==20.2.1",
    "pip install setuptools",
    "pip install wheel==0.29.0",
    "pip install --upgrade -I flake8==5.0.4",
    "pip install -e .[test] --trusted-host github.com"
  ],
  "before_script": [
    "flake8 ."
  ],
  "script": [
    "python -m coverage run --parallel-mode --source=bluebottle manage.py test --keepdb"
  ],
  "notifications": {
    "slack": {
      "secure": "TOveMBh9HePYKWuGTrWF+hTXzxGZvbVsa3KU0sB1yv6qkcixb5/ggvmkTeRddYEd/zyWyMenicFsrXVBgsP0SmbNgke6kq5+EN0U5oJWse998lvCVCpwmJQMdwDHvYsOtbFEOppQrbRK4vmH8qibx3x2YVg+u+61ePHvWYF9z6U="
    }
  },
  "after_success": [
    "bash post_travis.sh",
    "python -m coverage combine; python -m coverage report --omit \"**/migrations/**\"; coveralls"
  ],
  "global_env": [
    "DJANGO_SETTINGS_MODULE='bluebottle.settings.testing'"
  ],
  "os": "linux",
  "group": "stable"
}