https://github.com/yzhao062/SUOD
Raw File
Tip revision: 0458f08747e13f2c54896185347b703f61e992bc authored by yzhao062 on 08 February 2024, 01:48:49 UTC
fix issue #14 for scikit-learning update
Tip revision: 0458f08
.travis.yml
language: python
dist: xenial

env:
  global:
    PIP_PREFER_BINARY=true # https://github.com/numba/llvmlite/issues/471

python:
  - "3.5"  # disabled for now as warning messages crash travis ci. turn it back in 3.5.7
  - "3.5-dev"  # 3.5 development branch
  - "3.6"
  - "3.6-dev"  # 3.6 development branch
  - "3.7"  # 3.6 development branch

install:
  - pip install --upgrade pip
  - pip install -r requirements.txt
  - pip install pytest
  - pip install pandas
  - pip install pytest-cov
  - pip install coveralls

# command to run tests
script:
   pytest --cov=suod/

after_success:
  - coveralls

notifications:
  email:
    recipients:
      - yzhao062@gmail.com
  on_success: never # default: change
  on_failure: always # default: always
back to top