File: .travis.yml

package info (click to toggle)
python-textile 1%3A4.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 452 kB
  • sloc: python: 2,620; sh: 7; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 490 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dist: xenial   # required for Python >= 3.7
language: python
env:
  - IMAGESIZE=true
  - IMAGESIZE=false
python:
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  # PyPy versions
  - "pypy3"
# command to install dependencies
install:
  - imagesize=''
  - pip install -U coveralls pytest pytest-cov coverage codecov
  - if [[ $IMAGESIZE == true ]] ; then imagesize='[imagesize]' ; fi
  - pip install -e ".${imagesize}"
# command to run tests
script: py.test
after_success:
  - coveralls
  - codecov