Skip to content

Commit b755ff4

Browse files
authored
Remove codecov (#170)
1 parent 1d238b0 commit b755ff4

File tree

8 files changed

+468
-373
lines changed

8 files changed

+468
-373
lines changed

.editorconfig

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
root = true
44

55
[*]
6-
indent_style = space
7-
indent_size = 4
8-
trim_trailing_whitespace = true
9-
insert_final_newline = true
106
charset = utf-8
117
end_of_line = lf
8+
indent_size = 4
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
1212

1313
[LICENSE.txt]
1414
insert_final_newline = false
@@ -17,5 +17,5 @@ insert_final_newline = false
1717
trim_trailing_whitespace = false
1818

1919
[*.{json,yaml,yml}]
20-
indent_style = space
2120
indent_size = 2
21+
indent_style = space

.github/workflows/checks.yaml

-6
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,3 @@ jobs:
9494
run: |
9595
poetry build
9696
pip install dist/cert_manager-*.tar.gz
97-
98-
- name: 'Upload code coverage to Codecov'
99-
uses: 'codecov/[email protected]'
100-
with:
101-
file: './coverage.xml'
102-
flags: 'unittests'

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.3.0
4+
rev: v4.4.0
55
hooks:
66
- id: check-added-large-files
77
- id: check-ast
@@ -28,11 +28,11 @@ repos:
2828
- -b main
2929
- id: trailing-whitespace
3030
- repo: https://github.com/broadinstitute/mirrors-pylama.git
31-
rev: v1.0.1
31+
rev: v1.0.2
3232
hooks:
3333
- id: pylama
3434
- repo: https://github.com/adrienverge/yamllint.git
35-
rev: v1.28.0
35+
rev: v1.31.0
3636
hooks:
3737
- id: yamllint
3838
args:

.yamllint

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
extends: default
33
rules:
4+
indentation:
5+
spaces: 2
46
line-length:
57
max: 120
68
level: warning
7-
indentation:
8-
spaces: 2
99
ignore: |
1010
.venv/

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
This library provides a [Python][1] interface to the [Sectigo][2] Certificate Manager REST API. python-cert_manager is open sourced under the [BSD 3-Clause license](LICENSE.txt).
44

55
![checks](https://github.com/broadinstitute/python-cert_manager/workflows/checks/badge.svg?branch=main)
6-
[![codecov](https://codecov.io/gh/broadinstitute/python-cert_manager/branch/main/graph/badge.svg)](https://codecov.io/gh/broadinstitute/python-cert_manager)
76

87
## Basics
98

codecov.yml

-10
This file was deleted.

poetry.lock

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

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ toml = ">=0.9,<0.11"
1616

1717
[tool.poetry.dev-dependencies]
1818
bump2version = "*"
19-
codecov = "*"
2019
coverage = ">=4.4.2"
2120
fixtures = "*"
2221
green = ">=2.12.0"

0 commit comments

Comments
 (0)