ps-add-updated_at-to-pusher-payload Send updated_at for builds and jobs with Pusher

Push event #2451 failed

  • Ran for
  • Total time
  • New branch build
Formulae-Litterae-Chartae/formulae-capitains-nemo:.travis.yml@9ac47e9
language: python
services:
  - redis-server
python:
  - "3.7"
  - "3.8"
# command to install dependencies
install:
    - pip install -r requirements.txt
    - pip install coveralls
# command to run tests
script:
    - coverage run --source=formulae -m unittest discover
after_success:
    - coverage combine
    - coveralls
Build Config
{
  "env": {
    "global": [
      "COVERAGE=1"
    ]
  },
  "rvm": "2.4.2",
  "dist": "trusty",
  "jobs": {
    "include": [
      {
        "stage": "testing time"
      },
      {
        "dist": "trusty",
        "ruby": null,
        "sudo": "required",
        "stage": ":ship: it to Quay.io",
        "addons": null,
        "script": "./script/docker-build-and-push",
        "install": "skip",
        "services": null,
        "before_script": [
          "curl -L https://github.com/docker/compose/releases/download/1.13.0/docker-compose-`uname -s`-`uname -m` > ./docker-compose",
          "sudo mv ./docker-compose /usr/local/bin/docker-compose",
          "sudo chmod +x /usr/local/bin/docker-compose"
        ],
        "before_install": "skip"
      },
      {
        "ruby": null,
        "stage": "trigger automated build on Docker Hub",
        "addons": null,
        "script": "script/send-docker-hub-trigger",
        "install": "skip",
        "services": null,
        "before_script": "skip",
        "before_install": "skip"
      }
    ]
  },
  "sudo": false,
  "cache": "bundler",
  "addons": {
    "postgresql": 9.3
  },
  "script": [
    "bundle exec rspec"
  ],
  "services": [
    "memcached",
    "redis",
    "rabbitmq"
  ],
  "before_script": [
    "bundle exec rake db:create --trace"
  ],
  "before_install": [
    "bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM"
  ]
}