Skip to content

Always skip matrix generation if 0 classified SVs

b83f8c0
Select commit
Loading
Failed to load commit list.
Open

Production Robustness #236

Always skip matrix generation if 0 classified SVs
b83f8c0
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 11, 2025 in 7m 1s

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 #236 Production Robustness.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Python OS State
497.1 3.9 Linux passed
497.2 3.12 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Versions 3.9, 3.12
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.9",
    "3.12"
  ],
  "before_install": [
    "pip install --upgrade pip setuptools packaging",
    "if ! [ -f ./src/GRCh37.tar.gz ]; then wget --connect-timeout=10 --tries=20 ftp://alexandrovlab-ftp.ucsd.edu/pub/tools/SigProfilerMatrixGenerator/GRCh37.tar.gz -P ./src/; fi"
  ],
  "install": [
    "pip install .[tests]"
  ],
  "cache": {
    "directories": [
      "$TRAVIS_BUILD_DIR/src/"
    ]
  },
  "before_script": [
    "python install_genome.py -l $TRAVIS_BUILD_DIR/src/ GRCh37"
  ],
  "script": [
    "pytest tests",
    "python3 test.py -t GRCh37"
  ]
}