summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kolodyazhny <e0ne@e0ne.info>2020-03-20 10:42:21 +0200
committerGitHub <noreply@github.com>2020-03-20 10:42:21 +0200
commit31358919cf24b11f4f428d42c6240cbbdf730f51 (patch)
tree2bb0a4d89f36491056edd8970a6dab7bf8f02bda
parentfb32b317f6e2b4b4aad2b86a74844658ac4aa11e (diff)
parentc0604eff25152d2468f75a763f6dd187e0a2235d (diff)
downloadpyscss-31358919cf24b11f4f428d42c6240cbbdf730f51.tar.gz
Merge pull request #387 from e0ne/travis-fix
Travis fix
-rw-r--r--.travis.yml32
1 files changed, 26 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 482e3bf..5395166 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,36 @@
language: python
+
+dist: bionic
+
+addons:
+ apt:
+ packages:
+ - libpcre2-dev
+
+arch:
+ - arm64
+ - amd64
+ # - ppc64le
+ # - s390x
+
python:
- - "2.6"
- - "2.7"
- - "3.3"
- - "3.4"
- - "3.5"
- - pypy
+ - "3.6"
+ - "3.7"
+ - "3.8"
- pypy3
+
+# there is no pypy3 for arm64 on Travis CI
+jobs:
+ exclude:
+ - arch: arm64
+ python: pypy3
+
install:
- pip install .
- pip install pillow pytest-cov coveralls
+
script:
py.test --cov scss
+
after_success:
coveralls