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

Release Candidate v.1.7 #50

Merged
merged 12 commits into from
Apr 7, 2024

Merge branch 'master' into develop

c0213bc
Select commit
Loading
Failed to load commit list.
Merged

Release Candidate v.1.7 #50

Merge branch 'master' into develop
c0213bc
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Apr 7, 2024 in 5m 17s

Build Errored

The build errored.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #50 Release Candidate v.1.7.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job Python ENV OS State
54.1 3.10 TOXENV=py310 Linux errored
54.2 3.11 TOXENV=py311 Linux errored
54.3 3.10 TOXENV=coverage Linux errored
54.4 3.10 TOXENV=docs Linux errored

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "git": {
    "quiet": true
  },
  "install": [
    "pip install -r requirements.dev.txt"
  ],
  "before_script": [
    "curl -Os --retry 5 https://uploader.codecov.io/latest/linux/codecov",
    "chmod +x codecov"
  ],
  "script": [
    "tox -- -v -n auto > cmd_output.txt"
  ],
  "after_failure": [
    "curl --upload-file cmd_output.txt https://transfer.sh/cmd_output.txt"
  ],
  "after_success": [
    "if [[ -e .coverage ]]; then ./codecov -t $CODECOV_TOKEN; fi"
  ],
  "jobs": {
    "include": [
      {
        "python": "3.10",
        "dist": "focal",
        "env": [
          {
            "TOXENV": "py310"
          },
          {
            "YARN_GPG": "no"
          }
        ]
      },
      {
        "python": "3.11",
        "dist": "bionic",
        "env": [
          {
            "TOXENV": "py311"
          },
          {
            "YARN_GPG": "no"
          }
        ]
      },
      {
        "python": "3.10",
        "dist": "focal",
        "env": [
          {
            "TOXENV": "coverage"
          },
          {
            "YARN_GPG": "no"
          }
        ]
      },
      {
        "python": "3.10",
        "dist": "focal",
        "env": [
          {
            "TOXENV": "docs"
          },
          {
            "YARN_GPG": "no"
          }
        ]
      }
    ]
  }
}