Skip to content

Commit

Permalink
Adjust coverage folder
Browse files Browse the repository at this point in the history
The folder for which the coverage is ran is adjusted correctly
  • Loading branch information
gutzbenj committed Jul 2, 2020
1 parent 1ad2744 commit c00b81b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .coveragerc
@@ -1,2 +1,3 @@
[run]
source=python_dwd
source = python_dwd
omit = tests/*
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -12,9 +12,9 @@
def tests(session):
"""Run tests."""
session.run("poetry", "install", external=True)
session.run("pytest", "--cov")

session.run("pytest", "--cov=python_dwd")


@nox.session(python=["3.8"])
def coverage(session: Session) -> None:
"""Run tests and upload coverage data."""
Expand Down

0 comments on commit c00b81b

Please sign in to comment.