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

Modify build2 #623

Merged
merged 4 commits into from
Jan 16, 2024

update docstring

24a3017
Select commit
Loading
Failed to load commit list.
Merged

Modify build2 #623

update docstring
24a3017
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 16, 2024 in 2m 15s

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 #623 Modify build2.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in parallel.

Job Python ENV OS State
1296.1 3.8 PIP_DEFAULT_TIMEOUT=100 Linux passed
1296.2 3.9 PIP_DEFAULT_TIMEOUT=100 Linux passed
1296.3 3.10 PIP_DEFAULT_TIMEOUT=100 Linux passed
1296.4 3.11 PIP_DEFAULT_TIMEOUT=100 Linux passed
1296.5 3.12 PIP_DEFAULT_TIMEOUT=100 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "version": "~> 1.0",
  "install": [
    "pip install pip --upgrade",
    "pip install \"poetry<1.8\"",
    "travis_retry poetry install --only main,linter,test --all-extras"
  ],
  "script": [
    "pytest tests/test_local*.py"
  ],
  "jobs": {
    "include": [
      {
        "python": "3.8"
      },
      {
        "python": "3.9"
      },
      {
        "python": "3.10",
        "script": [
          "make lint"
        ]
      },
      {
        "python": "3.11"
      },
      {
        "python": "3.12"
      }
    ]
  },
  "branches": {
    "only": [
      "main"
    ]
  },
  "env": [
    "jobs={:PIP_DEFAULT_TIMEOUT=>\"100\"}"
  ],
  "cache": {
    "pip": true
  }
}