Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 84833af

Browse files
Small fixed to make developping smoother (#88)
- Create a Makefile with the `make lint` command so we don't have to do it manually - Clean the `llvm-output-test` file generated by tests so we don't have it dangling around
1 parent 015fe1c commit 84833af

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name ?= codecovcli
2+
3+
lint:
4+
pip install black==22.3.0 isort==5.10.1
5+
black .
6+
isort --profile black .

tests/plugins/test_xcode.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,4 @@ def test_run_llvm_cov(self, mocker):
114114
mocked_subprocess.assert_called_once()
115115
file_path = pathlib.Path("llvm-output-test")
116116
assert file_path.is_file()
117+
file_path.unlink()

0 commit comments

Comments
 (0)