File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 numpy>1.13.3
3737 cython>=0.29.20
3838 pytest
39- pytest-cov
39+ coverage
4040 - name : Install unstable dependencies
4141 if : matrix.experimental == true
4242 shell : bash -l {0}
5757 - name : Run Tests
5858 shell : bash -l {0}
5959 run : |
60- pytest -vv test
60+ coverage run -m pytest -vv test
61+ coverage report
Original file line number Diff line number Diff line change @@ -30,11 +30,10 @@ requires-python = ">=3.10"
3030[dependency-groups ]
3131dev = [
3232 " check-manifest" ,
33- " coverage" ,
33+ " coverage>=7.10.0 " ,
3434 " coveralls" ,
3535 " cython>=0.29.20" ,
3636 " pytest" ,
37- " pytest-cov" ,
3837 " sphinx" ,
3938 " twine" ,
4039]
@@ -56,15 +55,14 @@ addopts = [
5655 " -ra" ,
5756 " -v" ,
5857 " --doctest-modules" ,
59- " --cov=cftime" ,
60- " --cov-report=term-missing" ,
6158]
6259doctest_optionflags = [
6360 " NORMALIZE_WHITESPACE" ,
6461 " ELLIPSIS" ,
6562]
6663
6764[tool .coverage .run ]
65+ source = [" src" ]
6866relative_files = true
6967branch = true
7068plugins = [
@@ -82,6 +80,7 @@ omit = [
8280]
8381
8482[tool .coverage .report ]
83+ show_missing = true
8584exclude_lines = [
8685 " pragma: no cover" ,
8786 " def __repr__" ,
You can’t perform that action at this time.
0 commit comments