Skip to content

Commit cdcced5

Browse files
authored
Merge pull request #34 from nicoddemus/improve-travis
Improve Travis testing
2 parents a1825d5 + 702ce07 commit cdcced5

3 files changed

Lines changed: 27 additions & 3 deletions

File tree

.travis.yml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,30 @@
11
language: python
22

3-
python:
4-
- 2.7
3+
jobs:
4+
include:
5+
- env: TOXENV=py27
6+
python: '2.7'
7+
- env: TOXENV=py34
8+
python: '3.4'
9+
- env: TOXENV=py35
10+
python: '3.5'
11+
- env: TOXENV=py36
12+
python: '3.6'
13+
- stage: deploy
14+
python: '3.6'
15+
env:
16+
install: pip install -U setuptools setuptools_scm
17+
script: skip
18+
deploy:
19+
provider: pypi
20+
user: nicoddemus
21+
distributions: sdist bdist_wheel
22+
skip_upload_docs: true
23+
password:
24+
secure: TfROFljW1ne09zgKkG1s9ggPscjcghWxW/KuoScjgzXQ6OBE7QNm4keLJZxq+dxYGwbON3hoFVzCq9bU4c5eyFAT+OEN7GRa+/WFXriZIilrWXsNWF1R+EEnIyjbNgFGXRX41XxQ0GzUNB+6xr8BexqTRgBp8gFdvoKulyibVWI=
25+
on:
26+
tags: true
27+
repo: pytest-dev/pytest-cpp
528

629
install:
730
- sudo apt-get update

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
'Programming Language :: Python :: 3',
3030
'Programming Language :: Python :: 3.4',
3131
'Programming Language :: Python :: 3.5',
32+
'Programming Language :: Python :: 3.6',
3233
'Programming Language :: C++',
3334
'Topic :: Software Development :: Quality Assurance',
3435
'Topic :: Software Development :: Testing',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,35}
2+
envlist = py{27,34,35,36}
33

44
[testenv]
55
deps=pytest

0 commit comments

Comments
 (0)