Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def unit(session, py):
session.run(
'py.test',
'--quiet',
'--cov=opencensus.trace',
'--cov=opencensus',
'--cov-append',
'--cov-config=.coveragerc',
'--cov-report=',
Expand Down Expand Up @@ -83,7 +83,7 @@ def lint(session):
session.interpreter = 'python3.6'
session.install('flake8')
session.install('.')
session.run('flake8', 'opencensus/trace')
session.run('flake8', 'opencensus/')


@nox.session
Expand Down
2 changes: 1 addition & 1 deletion opencensus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
except ImportError: # pragma: NO COVER
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)