Travis not support python testing on mac yet, try pypy instead
This commit is contained in:
parent
9ac8f7f63c
commit
8f7df0f7fb
1 changed files with 7 additions and 4 deletions
11
.travis.yml
11
.travis.yml
|
@ -1,12 +1,15 @@
|
|||
language: python
|
||||
cache: pip
|
||||
python:
|
||||
- "2.7"
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
- 2.7
|
||||
- pypy
|
||||
matrix:
|
||||
allow_failures:
|
||||
- pypy
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
before_script:
|
||||
- openssl version -a
|
||||
script:
|
||||
- python -m pytest src/Test --cov src --cov-config src/Test/coverage.ini
|
||||
before_install:
|
||||
|
|
Loading…
Reference in a new issue