Skip to content

Commit 1fd6a3d

Browse files
authored
Merge pull request #21 from BoothGroup/remove_codecov
Remove codecov integration
2 parents e79dbcd + 8440e95 commit 1fd6a3d

2 files changed

Lines changed: 1 addition & 27 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,3 @@ jobs:
4646
MPLBACKEND: Agg
4747
run: |
4848
find examples -name "*.py" -print0 | xargs -0 -n1 python
49-
- name: Upload coverage to Codecov
50-
uses: codecov/codecov-action@v3
51-
with:
52-
token: ${{ secrets.CODECOV_TOKEN }}
53-
verbose: true

pyproject.toml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ dev = [
3838
"ruff>=0.10.0",
3939
"mypy>=1.5.0",
4040
"typing-extensions>=4.0.0",
41-
"coverage[toml]>=5.5.0",
4241
"pytest>=6.2.4",
43-
"pytest-cov>=4.0.0",
4442
"matplotlib>=3.4.0",
4543
"sphinx>=7.0",
4644
"sphinx-book-theme>=1.0",
@@ -115,25 +113,6 @@ ignore_missing_imports = true
115113
module = "pyscf.*"
116114
ignore_missing_imports = true
117115

118-
[tool.coverage.run]
119-
branch = true
120-
source = [
121-
"dyson",
122-
]
123-
124-
[tool.coverage.report]
125-
exclude_lines = [
126-
"pragma: no cover",
127-
"def __repr__",
128-
"def __str__",
129-
"raise NotImplementedError",
130-
"raise util.ModelNotImplemented",
131-
"if __name__ == .__main__.:",
132-
]
133-
134-
[tool.coverage.html]
135-
directory = "cov_html"
136-
137116
[tool.pytest.ini_options]
138117
filterwarnings = [
139118
"ignore::DeprecationWarning",
@@ -142,4 +121,4 @@ testpaths = [
142121
"dyson",
143122
"tests",
144123
]
145-
addopts = "--doctest-modules --cov=dyson"
124+
addopts = "--doctest-modules"

0 commit comments

Comments
 (0)