1
0
mirror of https://github.com/modAL-python/modAL.git synced 2022-05-17 00:31:33 +03:00
Files
modAL-machine-learning/.travis.yml
2018-01-08 11:34:01 +01:00

34 lines
498 B
YAML

language: "python"
python:
- "3.5"
- "3.6"
before_install:
- sudo apt-get -qq update
install:
- pip install codecov
- pip install coverage
- pip install .
script:
- tests/test.sh
- coverage run tests/core_tests.py
- coverage report
after_success:
- codecov
matrix:
include:
install:
- pip install numpy==1.13 scikit-learn==0.18 scipy==0.18
- pip install codecov
- pip install coverage
- pip install .
branches:
only:
- master
- dev