Skip to content

Commit

Permalink
fix coverage report error : No data to report.
Browse files Browse the repository at this point in the history
  • Loading branch information
vinay-ebi committed Aug 21, 2024
1 parent 8cff3db commit d421629
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ install:
- ls

script:
- coverage run -m pytest src/tests
- coverage run -m pytest src/test
- coverage report -m
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ disable = [
"wildcard-import",
]
[tool.mypy]
mypy_path = "src/ensembl"
mypy_path = "src/test"
explicit_package_bases = true
ignore_missing_imports = true
show_error_codes = true
warn_unused_configs = true

[tool.pytest.ini_options]
testpaths = ["src/tests"]
testpaths = ["src/test"]
log_cli_level = "DEBUG"
addopts = [
"--import-mode=importlib",
Expand Down Expand Up @@ -116,4 +116,4 @@ exclude_also = [
]

[tool.coverage.run]
source = ["src/ensembl"]
source = ["src/test"]

0 comments on commit d421629

Please sign in to comment.