summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 150ede1cf56c2761d667f4267504992d1eefa331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python

# for container-y googdness:
sudo: false

python:
  - "3.6"
  - "3.5"
  - "3.4"
  - "2.7"

# command to install dependencies
install: 
- "pip install --upgrade pip setuptools"
- "pip install -e .[test,build]"
 
# command to run tests, e.g. python setup.py test
script: nosetests --with-cov --cov=testfixtures

after_success:
  - coverage combine
  - coveralls

deploy:
  provider: pypi
  user: chrisw
  password:
    secure: QrmUWPegJzGIYGI8XGY7ztjHTbpMgVDLNV6f9fjjAoo8efOubJh/BASjWD3ESPlIo1j5tGCcSRP2MN1+30zBxq7a7oiCnthISx42DP6Ih+wLHFCu7uBm12AH96hIOQUAtQotNSwB9dJAJIKKom7xkrV/nStjbcqC7hosTZlTy6o=
  on:
    tags: true
    repo: Simplistix/testfixtures
    python: "3.4"
  skip_cleanup: true
  distributions: "sdist bdist_wheel"