Skip to content

Improve development setup documentation with optional Windows instruc…

000c2ff
Select commit
Loading
Failed to load commit list.
Open

Improve development setup documentation with optional Windows instruc… #387

Improve development setup documentation with optional Windows instruc…
000c2ff
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 21, 2025 in 58s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #387 Improve development setup documentation with optional Windows instruc….
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 (Jammy)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": false,
  "python": [
    "3.8"
  ],
  "install": [
    "pip install -r requirements.txt",
    "pip install coverage",
    "pip install flake8 pytest PyYAML",
    "pip install coveralls",
    "pip install setuptools==70.0.0"
  ],
  "script": [
    "flake8 ./ || travis_terminate 1;",
    "python setup.py test || travis_terminate 1;"
  ],
  "after_success": [
    "coveralls --rcfile=.coveragerc",
    "./deploy-staging.sh"
  ],
  "notifications": {
    "email": [
      {
        "slack": "cloudcv:gy3CGQGNXLwXOqVyzXGZfdea",
        "on_success": "change",
        "on_failure": "always"
      }
    ]
  },
  "deploy": [
    {
      "provider": "pypi",
      "password": {
        "secure": "RiELCr5IMQayDlvwkHh18spa/20xO3T5a8XCEr/ZrY27AygTaFICR8zjKVdbPXRfn/uPtgRRlKJaIdQLpmHnDjmGbNNQo8Ga5E3N89sPcGjHSM7PKPcwSUu8Gwgk70YjXEnos/Bz4u/12kJ2UrgQZHlPpl0ySZRFjk8sqxwQbcxqM8lO1Wu+lGvuCufzllLDcC/Fz1OQjuXUuete/W1RHtDZD8khnKBa5p9P6c0H6AZI9+uvzCsA9qeWFqIiU9TuLja4jb9EcZdtXDDdKTbSHvft6/4JqzQBbsk5x31q5qjG8JFxh7DBrKSv3KXn5XQ7vXQOC7q4RJYDcxFrDBH3hrbO/wkRh/1qHcjzlACGQAUzECnmh+dkr1u9gnUdkC1ti78jkiC4ICA3YfCm9VDYUPSYfOgIXj2Fbv5FfJnggItO+8CLI/vnsu5MqSp/fmrjugO++lo3BC/b6/gonkt3HvyfX2DN7yMG0OMPpr2/5o+NDJekcpKg5VLAv7y3/I8hSj2LMIJ8zV9oAJAxA/qAPuOupxBTjn1+GeiR8Erx7Jak4BRm426JtvICU4h5Zn+d6Vcr1q12OwcZrOUJiBsFhfZebgUmctZjDtsJQwtysF7fovVsT6pXrTGLFgxgkxzXdn/+pyC9bwdKEdw+vbdEjxGasRtijS9BIa676ZFMRsM="
      },
      "distributions": "sdist bdist_wheel",
      "on": {
        "tags": true
      },
      "username": "cloudcv"
    }
  ]
}