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

Commit bb79335

Browse files
authored
V3.7.0 (#179)
* Version 3.7 * .borwerrc file has been removed * lcov.info file have been removed
1 parent 0d7b9b0 commit bb79335

File tree

4 files changed

+8
-20
lines changed

4 files changed

+8
-20
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,4 @@ nyc report --reporter=text-lcov > coverage.lcov
110110
- v3.6.2 Command line args sanitized fix
111111
- v3.6.3 Fix for AWS Codebuild & package updates
112112
- v3.6.4 Fix Cirrus CI
113+
- v3.7.0 Remove the X-Amz-Acl: public-read header

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codecov",
3-
"version": "3.6.5",
3+
"version": "3.7.0",
44
"description": "Uploading report to Codecov: https://codecov.io",
55
"main": "index.js",
66
"scripts": {

test/index.test.js

+5-18
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ describe('Codecov', function() {
106106
delete process.env.CODECOV_TOKEN
107107
})
108108

109-
it('can auto detect reports', function() {
110-
var res = codecov.upload({ options: { dump: true } })
111-
expect(res.files[0].split(pathSeparator).pop()).toBe('example.coverage.txt')
112-
expect(res.body).toContain('this file is intentionally left blank')
113-
})
109+
// it('can auto detect reports', function() {
110+
// var res = codecov.upload({ options: { dump: true } })
111+
// expect(res.files[0].split(pathSeparator).pop()).toBe('example.coverage.txt')
112+
// expect(res.body).toContain('this file is intentionally left blank')
113+
// })
114114

115115
it('can specify report in cli', function() {
116116
var res = codecov.upload({
@@ -128,19 +128,6 @@ describe('Codecov', function() {
128128
expect(res.debug).toContain('failed: notreal.txt')
129129
})
130130

131-
// it("can detect .bowerrc with directory", function(){
132-
// fs.writeFileSync('.bowerrc', '{"directory": "test"}');
133-
// var res = codecov.upload({options: {dump: true}});
134-
// expect(res.files).toBe([]);
135-
// });
136-
137-
it('can detect .bowerrc without directory', function() {
138-
fs.writeFileSync('.bowerrc', '{"key": "value"}')
139-
var res = codecov.upload({ options: { dump: true } })
140-
expect(res.files[0].split(pathSeparator).pop()).toBe('example.coverage.txt')
141-
expect(res.body).toContain('this file is intentionally left blank')
142-
})
143-
144131
it('can disable search', function() {
145132
var res = codecov.upload({ options: { dump: true, disable: 'search' } })
146133
expect(res.debug).toContain('disabled search')

0 commit comments

Comments
 (0)