Skip to content

Commit 26e8e63

Browse files
committed
Merge branch 'master' of github.com:srittau/python-asserts
2 parents 1b5a6f7 + ba9982f commit 26e8e63

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

.travis.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
language: python
2-
python:
3-
- "2.7"
4-
- "3.4"
5-
- "3.5"
6-
- "3.6"
72
install:
83
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; fi
94
script:
105
- python -m unittest test_asserts
116
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then mypy asserts test_asserts.py; fi
127
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then python -m doctest asserts/__init__.py; fi
8+
jobs:
9+
include:
10+
- stage: test
11+
python: 2.7
12+
dist: trusty
13+
sudo: false
14+
- stage: test
15+
python: 3.4
16+
dist: trusty
17+
sudo: false
18+
- stage: test
19+
python: 3.5
20+
dist: trusty
21+
sudo: false
22+
- stage: test
23+
python: 3.6
24+
dist: trusty
25+
sudo: false
26+
- stage: test
27+
python: 3.7
28+
dist: xenial
29+
sudo: true
30+

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def read(fname):
3131
"Programming Language :: Python :: 3.4",
3232
"Programming Language :: Python :: 3.5",
3333
"Programming Language :: Python :: 3.6",
34+
"Programming Language :: Python :: 3.7",
3435
"Topic :: Software Development :: Quality Assurance",
3536
"Topic :: Software Development :: Testing",
3637
],

0 commit comments

Comments
 (0)