Skip to content

Tags: spectralblu/codecov-cli

Tags

v0.1.16

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix label recalculation (codecov#200)

When Codecov doesn't return the absent labels we were re-calculating only the absent labels.
The issue is that, becaue Codecov didn't have them in the first place they couldn't filter out labels that might have been changed in the current commit. And we (CLI) weren't doing that either.

That's an issue because pytest fails if you tell it to run a label that doesn't exist.
So if we get the payload back with no absent labels we have to recalculate everything.

v0.1.15

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request codecov#203 from codecov/scott/increment-version

Increment version to v0.1.15

v0.1.14

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump version (codecov#198)

v0.1.13

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump version to create next release (codecov#180)

v0.1.12

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request codecov#177 from codecov/dana/v0.1.12

upgrade version to 0.1.12

v0.1.11

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request codecov#167 from codecov/dana/0.1.11-release

make a new release

v0.1.10

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update setup.py (codecov#157)

Prepare next release

v0.1.9

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump release number to v0.1.9 (codecov#151)

v0.1.8

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version number (codecov#145)

v0.1.8_rc

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Encode PUT data before sending POST request to Codecov (codecov#144)

When testing ATS in the sentry fork I have 3 out of 5 uploads timing out when pushing to storage.

I noticed that we are generating the PUT payload *after* receiving the response from Codecov.
Generating PUT payload includes compressing the report file, that might be pretty big,
and considering that the pre-signed put URL has a TTL of 10s this time might be influential.

So now we are just prepping the data completely before starting the upload process,
in the hopes that this will save us enough time to get all uploads into storage in time.