Skip to content

Commit 71f5066

Browse files
authored
Merge branch 'master' into add-3.7
2 parents 6ad9b73 + 0b96aba commit 71f5066

5 files changed

Lines changed: 24 additions & 17 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ coverage.xml
1111
dist
1212
htmlcov
1313
venv
14+
*.sw[op]

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1+
12
language: python
23
cache: pip
34
notifications:
45
email: false
5-
6+
dist: xenial
7+
sudo: false
68
python:
79
- 2.7
810
- pypy
911
- 3.4
1012
- 3.5
11-
- 3.6
13+
- 3.6
14+
- 3.7
1215
- pypy3
1316
matrix:
1417
include:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ after_success:
101101

102102
## Copyright
103103

104-
> Copyright 2014-2017 codecov
104+
> Copyright 2014-2019 codecov

appveyor.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,37 @@ environment:
1313
# a later point release.
1414

1515
- PYTHON: "C:\\Python27"
16-
PYTHON_VERSION: "2.7.x" # currently 2.7.9
16+
PYTHON_VERSION: "2.7.x" # currently 2.7.15
1717
PYTHON_ARCH: "32"
1818

1919
- PYTHON: "C:\\Python27-x64"
20-
PYTHON_VERSION: "2.7.x" # currently 2.7.9
20+
PYTHON_VERSION: "2.7.x" # currently 2.7.15
2121
PYTHON_ARCH: "64"
2222

23-
- PYTHON: "C:\\Python33"
24-
PYTHON_VERSION: "3.3.x" # currently 3.3.5
23+
- PYTHON: "C:\\Python34"
24+
PYTHON_VERSION: "3.4.x" # currently 3.4.4
2525
PYTHON_ARCH: "32"
2626

27-
- PYTHON: "C:\\Python33-x64"
28-
PYTHON_VERSION: "3.3.x" # currently 3.3.5
27+
- PYTHON: "C:\\Python34-x64"
28+
PYTHON_VERSION: "3.4.x" # currently 3.4.4
2929
PYTHON_ARCH: "64"
3030

31-
- PYTHON: "C:\\Python34"
32-
PYTHON_VERSION: "3.4.x" # currently 3.4.3
31+
- PYTHON: "C:\\Python36"
32+
PYTHON_VERSION: "3.6.x" # currently 3.6.6
3333
PYTHON_ARCH: "32"
3434

35-
- PYTHON: "C:\\Python34-x64"
36-
PYTHON_VERSION: "3.4.x" # currently 3.4.3
35+
- PYTHON: "C:\\Python36-x64"
36+
PYTHON_VERSION: "3.6.x" # currently 3.6.6
3737
PYTHON_ARCH: "64"
3838

39-
# Also test Python 2.6.6 not pre-installed
40-
41-
- PYTHON: "C:\\Python266"
42-
PYTHON_VERSION: "2.6.6"
39+
- PYTHON: "C:\\Python37"
40+
PYTHON_VERSION: "3.7.x" # currently 3.7.1
4341
PYTHON_ARCH: "32"
4442

43+
- PYTHON: "C:\\Python37-x64"
44+
PYTHON_VERSION: "3.7.x" # currently 3.7.1
45+
PYTHON_ARCH: "64"
46+
4547
install:
4648
# Download the Appveyor Python build accessories into subdirectory .\appveyor
4749
- mkdir appveyor

tests/test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ def test_disable_search(self):
204204
else:
205205
raise Exception("Did not raise AssertionError")
206206

207+
@unittest.skipIf(os.getenv('CI') == "True" and os.getenv('APPVEYOR') == 'True', 'Skip AppVeyor CI test')
207208
def test_prefix(self):
208209
self.fake_report()
209210
res = self.run_cli(prefix='/foo/bar/', dump=True, token='a', branch='b', commit='c')

0 commit comments

Comments
 (0)