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

docs and test cli call for init command #480

Merged
merged 4 commits into from
Jul 9, 2024

Merge branch 'master' into cmdline/init

a3cb9e3
Select commit
Loading
Failed to load commit list.
Merged

docs and test cli call for init command #480

Merge branch 'master' into cmdline/init
a3cb9e3
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jul 9, 2024 in 25m 16s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the cmdline/init branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has five jobs, running in parallel.

Job Python OS State
2410.1 3.7 Linux passed
2410.2 3.8 Linux passed
2410.3 3.9 Linux passed
2410.4 3.10 Linux passed
2410.5 3.11 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Versions 3.7, 3.8, 3.9, 3.10, 3.11
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "python": [
    "3.7",
    "3.8",
    "3.9",
    "3.10",
    "3.11"
  ],
  "cache": {
    "pip": true
  },
  "addons": {
    "apt": {
      "packages": [
        "ffmpeg",
        "sox"
      ]
    }
  },
  "before_install": [
    "python -m pip install --upgrade pip"
  ],
  "install": [
    "pip install -U importlib_metadata",
    "pip install -U setuptools",
    "pip install -r requirements.txt",
    "pip install ."
  ],
  "script": [
    "rm -rf output/",
    "pytest",
    "cd docs; make clean; make html; touch build/html/.nojekyll"
  ]
}