forked from miso-belica/sumy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
68 lines (63 loc) · 1.8 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
language: python
os: linux
cache: pip
matrix:
include:
- name: "Python 2.7 on Linux"
python: 2.7
install:
- pip install -U pip wheel setuptools
- python setup.py install
# use "JPype1==0.7.1" (for kolnpy) because of Python 2 support
- pip install numpy tinysegmenter jieba "JPype1==0.7.1" konlpy
- python -c "import nltk; nltk.download('punkt')"
- pip install -U pytest codecov pytest-cov
- name: "Python 3.5 on Linux"
python: 3.5
- name: "Python 3.6 on Linux"
python: 3.6
- name: "Python 3.7 on Linux"
python: 3.7
- name: "Python 3.8 on Linux"
dist: xenial
python: 3.8
# https://github.com/travis-ci/travis-ci/issues/2219#issuecomment-41804942
# https://snarky.ca/how-to-use-your-project-travis-to-help-test-python-itself/
- name: "Python 3.9 Nightly on Linux"
dist: bionic
python: nightly
- name: "Pypy 3 on Linux"
python: pypy3
- name: "Python 3 on older macOS"
os: osx
osx_image: xcode9.4
language: shell
before_install:
- sw_vers
- python3 --version
- pip3 --version
- name: "Python 3 on macOS"
os: osx
osx_image: xcode11
language: shell
before_install:
- sw_vers
- python3 --version
- pip3 --version
allow_failures:
- python: nightly
- python: pypy3
- os: osx
before_install:
# install dependencies for NumPy
- sudo apt-get update -qq
- sudo apt-get install -qq gfortran libatlas-base-dev
install:
- pip install -U pip wheel setuptools
- python setup.py install
- pip install numpy tinysegmenter jieba konlpy
- python -c "import nltk; nltk.download('punkt')"
- pip install -U pytest codecov pytest-cov
script: pytest tests
after_success:
- codecov