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
|
language: python
|
||||||
cache: pip
|
cache: pip
|
||||||
python:
|
python:
|
||||||
- "2.7"
|
- 2.7
|
||||||
os:
|
- pypy
|
||||||
- linux
|
matrix:
|
||||||
- osx
|
allow_failures:
|
||||||
|
- pypy
|
||||||
install:
|
install:
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
|
before_script:
|
||||||
|
- openssl version -a
|
||||||
script:
|
script:
|
||||||
- python -m pytest src/Test --cov src --cov-config src/Test/coverage.ini
|
- python -m pytest src/Test --cov src --cov-config src/Test/coverage.ini
|
||||||
before_install:
|
before_install:
|
||||||
|
|
Loading…
Reference in a new issue