Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
format
  • Loading branch information
thomasrockhu committed Aug 27, 2020
commit cb4cfd7d9d00dba27f57aa2ad4611901b5398c3b
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test:
py.test tests/test.py --cov=codecov

format:
black . --check -v -t py38
black . -v -t py38 --check --diff

compare:
hub compare $(shell git tag --sort=refname | tail -1)...master
Expand Down
2 changes: 1 addition & 1 deletion tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def test_send(self):
gzip_worker.decompress(put.call_args[1]["data"])
+ gzip_worker.flush()
)
assert u"tests/test.py".encode("utf-8") in reports
assert "tests/test.py".encode("utf-8") in reports

def test_send_error(self):
with patch("requests.post") as post:
Expand Down