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

Commit 50c9f34

Browse files
committed
get coverage.json
1 parent 097f692 commit 50c9f34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codecov/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
except ImportError:
2424
import subprocess
2525

26-
version = VERSION = __version__ = '1.1.8'
26+
version = VERSION = __version__ = '1.1.9'
2727

2828
SKIP_DIRECTORIES = re.compile(r'\/(\..+|((Sites\/www\/bower)|node_modules|vendor|bower_components|(coverage\/instrumented)|virtualenv|venv\/(lib|bin)|build\/lib|\.git|\.egg\-info))\/')
2929
SKIP_FILES = re.compile(r'(\.tar\.gz|\.pyc|\.egg|(\/\..+)|\.txt)$')
3030

3131
def build_reports(root):
3232
reports = []
3333
table_of_contents = []
34-
accepting = set(('coverage.xml', 'jacoco.xml', 'jacocoTestReport.xml', 'clover.xml', 'coverage.txt', 'cobertura.xml', 'jacoco.xml', 'lcov.info', 'gcov.info'))
34+
accepting = set(('coverage.xml', 'coverage.json', 'jacoco.xml', 'jacocoTestReport.xml', 'clover.xml', 'coverage.txt', 'cobertura.xml', 'jacoco.xml', 'lcov.info', 'gcov.info'))
3535

3636
for _root, dirs, files in os.walk(root):
3737
if SKIP_DIRECTORIES.search(_root): continue

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33
import sys
44

5-
version = '1.1.8'
5+
version = '1.1.9'
66
classifiers = ["Development Status :: 5 - Production/Stable",
77
"Environment :: Plugins",
88
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)