From 8f7df0f7fba98f23ca26e501240b8f9d0d04b9df Mon Sep 17 00:00:00 2001 From: HelloZeroNet Date: Sun, 20 Sep 2015 22:46:57 +0200 Subject: [PATCH] Travis not support python testing on mac yet, try pypy instead --- .travis.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 64287630..b8c21809 100644 --- a/.travis.yml +++ b/.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: