Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into add-3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Jun 6, 2019
2 parents 6ad9b73 + 0b96aba commit 71f5066
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -11,3 +11,4 @@ coverage.xml
dist
htmlcov
venv
*.sw[op]
7 changes: 5 additions & 2 deletions .travis.yml
@@ -1,14 +1,17 @@

language: python
cache: pip
notifications:
email: false

dist: xenial
sudo: false

This comment has been minimized.

Copy link
@hugovk

This comment has been minimized.

Copy link
@thomasrockhu

thomasrockhu Jun 7, 2019

Author Contributor

💯 I saw your PR removed it and it has been committed 54033d8

python:
- 2.7
- pypy
- 3.4
- 3.5
- 3.6
- 3.6
- 3.7
- pypy3
matrix:
include:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -101,4 +101,4 @@ after_success:

## Copyright

> Copyright 2014-2017 codecov
> Copyright 2014-2019 codecov
30 changes: 16 additions & 14 deletions appveyor.yml
Expand Up @@ -13,35 +13,37 @@ environment:
# a later point release.

- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x" # currently 2.7.9
PYTHON_VERSION: "2.7.x" # currently 2.7.15
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x" # currently 2.7.9
PYTHON_VERSION: "2.7.x" # currently 2.7.15
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python33"
PYTHON_VERSION: "3.3.x" # currently 3.3.5
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.x" # currently 3.4.4
PYTHON_ARCH: "32"

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

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

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

# Also test Python 2.6.6 not pre-installed

- PYTHON: "C:\\Python266"
PYTHON_VERSION: "2.6.6"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.x" # currently 3.7.1
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x" # currently 3.7.1
PYTHON_ARCH: "64"

install:
# Download the Appveyor Python build accessories into subdirectory .\appveyor
- mkdir appveyor
Expand Down
1 change: 1 addition & 0 deletions tests/test.py
Expand Up @@ -204,6 +204,7 @@ def test_disable_search(self):
else:
raise Exception("Did not raise AssertionError")

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

0 comments on commit 71f5066

Please sign in to comment.