forked from dhondta/python-codext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
86 lines (86 loc) · 2.52 KB
/
Copy path.travis.yml
File metadata and controls
86 lines (86 loc) · 2.52 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
language: python
jobs:
allow_failures:
- arch: arm64
- os: osx
- python: nightly
fast_finish: true
include:
- python: 2.7
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
- python: nightly
- os: windows
language: shell
before_install: choco install python2 --version 2.7.18
env: PATH=/c/Python27:/c/Python27/Scripts:$PATH
- os: windows
language: shell
before_install: choco install python --version 3.6.8
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
- os: windows
language: shell
before_install: choco install python --version 3.7.6
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
- os: windows
language: shell
before_install: choco install python --version 3.8.1
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
- os: windows
language: shell
before_install: choco install python --version 3.9.0
env: PATH=/c/Python39:/c/Python39/Scripts:$PATH
- python: 2.7
arch: arm64
- python: 3.6
arch: arm64
- python: 3.7
arch: arm64
dist: focal
- python: 3.8
arch: arm64
- python: 3.9
arch: arm64
- python: nightly
arch: arm64
- os: osx
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=2.7.18
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.6.8
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
osx_image: xcode11.3
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.7.6
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
osx_image: xcode11.3
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.8.1
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
osx_image: xcode11.3
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.9.0
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
cache: pip
install:
- python -m pip install --upgrade pip
- pip install pytest pytest-cov coveralls markdown2 six .
script: pytest --cov=codext --cov-report=term-missing tests
after_success: coveralls