Skip to content

Commit cb9f684

Browse files
committed
Test py37, update classifiers and test with more modern pytest versions
1 parent da7d4b2 commit cb9f684

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ after_success:
1616

1717
jobs:
1818
include:
19+
- python: '3.7'
20+
sudo: required
21+
dist: xenial
1922
- python: '3.6'
2023
env: TOXENV=linting
2124
- python: '3.6'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
'Programming Language :: Python :: 3.4',
3636
'Programming Language :: Python :: 3.5',
3737
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7',
3839
'Topic :: Software Development :: Testing',
3940
]
4041
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
2-
envlist = py{27,34,35,36}-pytest{34,35},linting,norewrite
2+
envlist = py{27,34,35,36,37}-pytest{37,38},linting,norewrite
33

44
[testenv]
55
passenv = USER USERNAME
66
deps =
77
coverage
8-
pytest34: pytest~=3.4
9-
pytest35: pytest~=3.5
8+
pytest37: pytest~=3.7
9+
pytest38: pytest~=3.8
1010
commands =
1111
coverage run --append --source=pytest_mock.py -m pytest test_pytest_mock.py
1212

0 commit comments

Comments
 (0)