Skip to content

Commit

Permalink
Remove .coveragerc and add coverage settings to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonwillard committed Jun 21, 2021
1 parent 22f463c commit 89cfea0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .coveragerc

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ jobs:
- '.github/**/*.yml'
- 'setup.cfg'
- 'requirements.txt'
- '.coveragerc'
style:
name: Check code style
Expand Down
17 changes: 17 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,23 @@ exclude =
doc/
aesara/_version.py

[coverage:run]
omit =
aesara/_version.py
aesara/gpuarray/*
tests/*
branch = True
relative_files = true

[coverage:report]
omit =
aesara/_version.py
aesara/gpuarray/*
tests/*
exclude_lines =
pragma: no cover
show_missing = 1

[versioneer]
VCS = git
style = pep440
Expand Down

0 comments on commit 89cfea0

Please sign in to comment.