Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get_python_source gets called on shared object file and causes SyntaxError #1160

Closed
P403n1x87 opened this issue May 6, 2021 · 21 comments
Closed
Labels
bug Something isn't working fixed

Comments

@P403n1x87
Copy link

Describe the bug

While testing with pytest-cov we started noticing some failures due to an "internal" error. Digging deeper, it looks like somehow a shared object (.so) file has made its way to get_python_source, which then fails with

INTERNALERROR> SyntaxError: invalid or missing encoding declaration

with the actual issue being

INTERNALERROR> Traceback (most recent call last):
INTERNALERROR>   File "/Users/gabriele.tornetta/.pyenv/versions/3.5.10/lib/python3.5/tokenize.py", line 392, in find_cookie
INTERNALERROR>     line_string = line.decode('utf-8')
INTERNALERROR> UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 0: invalid continuation byte

Whilst it's maybe the case that the issue is more upstream (maybe .so files should not make it this far?), perhaps get_python_source should be enhanced to catch these potential cases. For instance, the extension check at

if ext == ".py" and env.WINDOWS:
exts = [".py", ".pyw"]
else:
exts = [ext]
could be enhanced?

To Reproduce

Unfortunately, it's not clear to me how to reproduce this problem, as it has appeared all of a sudden, and I don't see any changes in the dependency versions that are currently being pulled in the CI jobs. The project that is being tested contains some Cythonized code, and this is where the shared object is coming from.

  1. What version of Python are you using? 3.5, 3.6, 3.8
  2. What version of coverage.py are you using? The output of coverage debug sys is helpful. 5.5
  3. What versions of what packages do you have installed? The output of pip freeze is helpful.
  4. What code are you running? Give us a specific commit of a specific repo that we can check out.
  5. What commands did you run?

Expected behavior

No internal errors 🙂

@P403n1x87 P403n1x87 added the bug Something isn't working label May 6, 2021
@P403n1x87 P403n1x87 changed the title Shared object file in get_python_source get_python_source gets called on shared object file and causes SyntaxError May 6, 2021
@nedbat
Copy link
Owner

nedbat commented May 9, 2021

Can you try a few things?

  1. coverage debug data what does this show?
  2. Can you try running your test suite under coverage without the pytest-cov plugin? Instead of "pytest blah blah" use "coverage run -m pytest blah blah", and then "coverage html". Does the same thing happen?
  3. It could also be useful to run your test suite as you do now, but with these environment variables: "COVERAGE_DEBUG=trace COVERAGE_DEBUG_FILE=/tmp/debug.out"

@P403n1x87
Copy link
Author

coverage debug data
-- data ------------------------------------------------------
path: .coverage
has_arcs: False

662 files:
ddtrace/__init__.py: 20 lines
ddtrace/_hooks.py: 34 lines
ddtrace/bootstrap/__init__.py: 0 lines
ddtrace/bootstrap/sitecustomize.py: 65 lines
ddtrace/commands/__init__.py: 0 lines
ddtrace/commands/ddtrace_run.py: 0 lines
ddtrace/compat.py: 0 lines
ddtrace/constants.py: 20 lines
ddtrace/context.py: 85 lines
ddtrace/contrib/__init__.py: 3 lines
ddtrace/contrib/aiobotocore/__init__.py: 0 lines
ddtrace/contrib/aiobotocore/patch.py: 0 lines
ddtrace/contrib/aiohttp/__init__.py: 0 lines
ddtrace/contrib/aiohttp/middlewares.py: 0 lines
ddtrace/contrib/aiohttp/patch.py: 0 lines
ddtrace/contrib/aiohttp/template.py: 0 lines
ddtrace/contrib/aiopg/__init__.py: 5 lines
ddtrace/contrib/aiopg/connection.py: 0 lines
ddtrace/contrib/aiopg/patch.py: 0 lines
ddtrace/contrib/algoliasearch/__init__.py: 4 lines
ddtrace/contrib/algoliasearch/patch.py: 0 lines
ddtrace/contrib/asgi/__init__.py: 0 lines
ddtrace/contrib/asgi/middleware.py: 0 lines
ddtrace/contrib/asgi/utils.py: 0 lines
ddtrace/contrib/asyncio/__init__.py: 15 lines
ddtrace/contrib/asyncio/compat.py: 3 lines
ddtrace/contrib/asyncio/helpers.py: 11 lines
ddtrace/contrib/asyncio/patch.py: 15 lines
ddtrace/contrib/asyncio/provider.py: 10 lines
ddtrace/contrib/asyncio/wrappers.py: 5 lines
ddtrace/contrib/boto/__init__.py: 5 lines
ddtrace/contrib/boto/patch.py: 0 lines
ddtrace/contrib/botocore/__init__.py: 0 lines
ddtrace/contrib/botocore/patch.py: 0 lines
ddtrace/contrib/bottle/__init__.py: 5 lines
ddtrace/contrib/bottle/patch.py: 0 lines
ddtrace/contrib/bottle/trace.py: 0 lines
ddtrace/contrib/cassandra/__init__.py: 5 lines
ddtrace/contrib/cassandra/patch.py: 0 lines
ddtrace/contrib/cassandra/session.py: 0 lines
ddtrace/contrib/celery/__init__.py: 0 lines
ddtrace/contrib/celery/app.py: 0 lines
ddtrace/contrib/celery/constants.py: 0 lines
ddtrace/contrib/celery/patch.py: 0 lines
ddtrace/contrib/celery/signals.py: 0 lines
ddtrace/contrib/celery/task.py: 0 lines
ddtrace/contrib/celery/utils.py: 0 lines
ddtrace/contrib/cherrypy/__init__.py: 0 lines
ddtrace/contrib/cherrypy/middleware.py: 0 lines
ddtrace/contrib/consul/__init__.py: 5 lines
ddtrace/contrib/consul/patch.py: 0 lines
ddtrace/contrib/dbapi/__init__.py: 53 lines
ddtrace/contrib/django/__init__.py: 6 lines
ddtrace/contrib/django/apps.py: 0 lines
ddtrace/contrib/django/compat.py: 0 lines
ddtrace/contrib/django/conf.py: 0 lines
ddtrace/contrib/django/middleware.py: 0 lines
ddtrace/contrib/django/patch.py: 0 lines
ddtrace/contrib/django/restframework.py: 0 lines
ddtrace/contrib/django/utils.py: 0 lines
ddtrace/contrib/dogpile_cache/__init__.py: 5 lines
ddtrace/contrib/dogpile_cache/lock.py: 0 lines
ddtrace/contrib/dogpile_cache/patch.py: 0 lines
ddtrace/contrib/dogpile_cache/region.py: 0 lines
ddtrace/contrib/elasticsearch/__init__.py: 0 lines
ddtrace/contrib/elasticsearch/patch.py: 0 lines
ddtrace/contrib/elasticsearch/quantize.py: 0 lines
ddtrace/contrib/falcon/__init__.py: 5 lines
ddtrace/contrib/falcon/middleware.py: 0 lines
ddtrace/contrib/falcon/patch.py: 0 lines
ddtrace/contrib/fastapi/__init__.py: 5 lines
ddtrace/contrib/fastapi/patch.py: 0 lines
ddtrace/contrib/flask/__init__.py: 0 lines
ddtrace/contrib/flask/helpers.py: 0 lines
ddtrace/contrib/flask/middleware.py: 0 lines
ddtrace/contrib/flask/patch.py: 0 lines
ddtrace/contrib/flask/wrappers.py: 0 lines
ddtrace/contrib/flask_cache/__init__.py: 0 lines
ddtrace/contrib/flask_cache/tracers.py: 0 lines
ddtrace/contrib/flask_cache/utils.py: 0 lines
ddtrace/contrib/futures/__init__.py: 9 lines
ddtrace/contrib/futures/patch.py: 9 lines
ddtrace/contrib/futures/threading.py: 3 lines
ddtrace/contrib/gevent/__init__.py: 12 lines
ddtrace/contrib/gevent/greenlet.py: 26 lines
ddtrace/contrib/gevent/patch.py: 32 lines
ddtrace/contrib/gevent/provider.py: 25 lines
ddtrace/contrib/grpc/__init__.py: 5 lines
ddtrace/contrib/grpc/client_interceptor.py: 0 lines
ddtrace/contrib/grpc/constants.py: 0 lines
ddtrace/contrib/grpc/patch.py: 0 lines
ddtrace/contrib/grpc/server_interceptor.py: 0 lines
ddtrace/contrib/grpc/utils.py: 0 lines
ddtrace/contrib/httplib/__init__.py: 0 lines
ddtrace/contrib/httplib/patch.py: 0 lines
ddtrace/contrib/jinja2/__init__.py: 5 lines
ddtrace/contrib/jinja2/constants.py: 0 lines
ddtrace/contrib/jinja2/patch.py: 0 lines
ddtrace/contrib/kombu/__init__.py: 0 lines
ddtrace/contrib/kombu/constants.py: 0 lines
ddtrace/contrib/kombu/patch.py: 0 lines
ddtrace/contrib/kombu/utils.py: 0 lines
ddtrace/contrib/logging/__init__.py: 0 lines
ddtrace/contrib/logging/patch.py: 0 lines
ddtrace/contrib/mako/__init__.py: 5 lines
ddtrace/contrib/mako/constants.py: 0 lines
ddtrace/contrib/mako/patch.py: 0 lines
ddtrace/contrib/molten/__init__.py: 5 lines
ddtrace/contrib/molten/patch.py: 0 lines
ddtrace/contrib/molten/wrappers.py: 0 lines
ddtrace/contrib/mongoengine/__init__.py: 5 lines
ddtrace/contrib/mongoengine/patch.py: 0 lines
ddtrace/contrib/mongoengine/trace.py: 0 lines
ddtrace/contrib/mysql/__init__.py: 5 lines
ddtrace/contrib/mysql/patch.py: 0 lines
ddtrace/contrib/mysql/tracers.py: 0 lines
ddtrace/contrib/mysqldb/__init__.py: 5 lines
ddtrace/contrib/mysqldb/patch.py: 0 lines
ddtrace/contrib/psycopg/__init__.py: 5 lines
ddtrace/contrib/psycopg/connection.py: 0 lines
ddtrace/contrib/psycopg/patch.py: 0 lines
ddtrace/contrib/pylibmc/__init__.py: 5 lines
ddtrace/contrib/pylibmc/addrs.py: 0 lines
ddtrace/contrib/pylibmc/client.py: 0 lines
ddtrace/contrib/pylibmc/patch.py: 0 lines
ddtrace/contrib/pylons/__init__.py: 5 lines
ddtrace/contrib/pylons/compat.py: 0 lines
ddtrace/contrib/pylons/constants.py: 0 lines
ddtrace/contrib/pylons/middleware.py: 0 lines
ddtrace/contrib/pylons/patch.py: 0 lines
ddtrace/contrib/pylons/renderer.py: 0 lines
ddtrace/contrib/pymemcache/__init__.py: 5 lines
ddtrace/contrib/pymemcache/client.py: 0 lines
ddtrace/contrib/pymemcache/patch.py: 0 lines
ddtrace/contrib/pymongo/__init__.py: 5 lines
ddtrace/contrib/pymongo/client.py: 0 lines
ddtrace/contrib/pymongo/parse.py: 0 lines
ddtrace/contrib/pymongo/patch.py: 0 lines
ddtrace/contrib/pymysql/__init__.py: 5 lines
ddtrace/contrib/pymysql/patch.py: 0 lines
ddtrace/contrib/pymysql/tracers.py: 0 lines
ddtrace/contrib/pynamodb/__init__.py: 0 lines
ddtrace/contrib/pynamodb/patch.py: 0 lines
ddtrace/contrib/pyodbc/__init__.py: 5 lines
ddtrace/contrib/pyodbc/patch.py: 0 lines
ddtrace/contrib/pyramid/__init__.py: 5 lines
ddtrace/contrib/pyramid/constants.py: 0 lines
ddtrace/contrib/pyramid/patch.py: 0 lines
ddtrace/contrib/pyramid/trace.py: 0 lines
ddtrace/contrib/pytest/__init__.py: 0 lines
ddtrace/contrib/pytest/constants.py: 0 lines
ddtrace/contrib/pytest/plugin.py: 13 lines
ddtrace/contrib/redis/__init__.py: 5 lines
ddtrace/contrib/redis/patch.py: 0 lines
ddtrace/contrib/redis/tracers.py: 0 lines
ddtrace/contrib/redis/util.py: 0 lines
ddtrace/contrib/rediscluster/__init__.py: 5 lines
ddtrace/contrib/rediscluster/patch.py: 0 lines
ddtrace/contrib/requests/__init__.py: 0 lines
ddtrace/contrib/requests/connection.py: 0 lines
ddtrace/contrib/requests/constants.py: 0 lines
ddtrace/contrib/requests/legacy.py: 0 lines
ddtrace/contrib/requests/patch.py: 0 lines
ddtrace/contrib/requests/session.py: 0 lines
ddtrace/contrib/sanic/__init__.py: 5 lines
ddtrace/contrib/sanic/patch.py: 0 lines
ddtrace/contrib/sqlalchemy/__init__.py: 0 lines
ddtrace/contrib/sqlalchemy/engine.py: 0 lines
ddtrace/contrib/sqlalchemy/patch.py: 0 lines
ddtrace/contrib/sqlite3/__init__.py: 4 lines
ddtrace/contrib/sqlite3/connection.py: 3 lines
ddtrace/contrib/sqlite3/patch.py: 33 lines
ddtrace/contrib/starlette/__init__.py: 5 lines
ddtrace/contrib/starlette/patch.py: 0 lines
ddtrace/contrib/tornado/__init__.py: 0 lines
ddtrace/contrib/tornado/application.py: 0 lines
ddtrace/contrib/tornado/compat.py: 0 lines
ddtrace/contrib/tornado/constants.py: 0 lines
ddtrace/contrib/tornado/decorators.py: 0 lines
ddtrace/contrib/tornado/handlers.py: 0 lines
ddtrace/contrib/tornado/patch.py: 0 lines
ddtrace/contrib/tornado/stack_context.py: 0 lines
ddtrace/contrib/tornado/template.py: 0 lines
ddtrace/contrib/trace_utils.py: 120 lines
ddtrace/contrib/urllib3/__init__.py: 0 lines
ddtrace/contrib/urllib3/patch.py: 0 lines
ddtrace/contrib/util.py: 0 lines
ddtrace/contrib/vertica/__init__.py: 5 lines
ddtrace/contrib/vertica/constants.py: 0 lines
ddtrace/contrib/vertica/patch.py: 0 lines
ddtrace/contrib/wsgi/__init__.py: 0 lines
ddtrace/contrib/wsgi/wsgi.py: 0 lines
ddtrace/encoding.py: 0 lines
ddtrace/ext/__init__.py: 14 lines
ddtrace/ext/aws.py: 0 lines
ddtrace/ext/cassandra.py: 0 lines
ddtrace/ext/ci.py: 164 lines
ddtrace/ext/consul.py: 0 lines
ddtrace/ext/db.py: 0 lines
ddtrace/ext/elasticsearch.py: 0 lines
ddtrace/ext/errors.py: 9 lines
ddtrace/ext/git.py: 0 lines
ddtrace/ext/http.py: 10 lines
ddtrace/ext/kombu.py: 0 lines
ddtrace/ext/memcached.py: 0 lines
ddtrace/ext/mongo.py: 0 lines
ddtrace/ext/net.py: 4 lines
ddtrace/ext/priority.py: 5 lines
ddtrace/ext/redis.py: 0 lines
ddtrace/ext/sql.py: 5 lines
ddtrace/ext/system.py: 2 lines
ddtrace/ext/test.py: 0 lines
ddtrace/filters.py: 24 lines
ddtrace/helpers.py: 16 lines
ddtrace/http/__init__.py: 0 lines
ddtrace/http/headers.py: 0 lines
ddtrace/internal/__init__.py: 1 lines
ddtrace/internal/agent.py: 42 lines
ddtrace/internal/buffer.py: 40 lines
ddtrace/internal/compat.py: 88 lines
ddtrace/internal/debug.py: 19 lines
ddtrace/internal/dogstatsd.py: 16 lines
ddtrace/internal/encoding.py: 47 lines
ddtrace/internal/forksafe.py: 21 lines
ddtrace/internal/hostname.py: 7 lines
ddtrace/internal/logger.py: 50 lines
ddtrace/internal/nogevent.py: 27 lines
ddtrace/internal/periodic.py: 68 lines
ddtrace/internal/processor/__init__.py: 13 lines
ddtrace/internal/processor/trace.py: 73 lines
ddtrace/internal/rate_limiter.py: 64 lines
ddtrace/internal/runtime/__init__.py: 22 lines
ddtrace/internal/runtime/collector.py: 52 lines
ddtrace/internal/runtime/constants.py: 23 lines
ddtrace/internal/runtime/container.py: 55 lines
ddtrace/internal/runtime/metric_collectors.py: 60 lines
ddtrace/internal/runtime/runtime_metrics.py: 90 lines
ddtrace/internal/runtime/tag_collectors.py: 32 lines
ddtrace/internal/service.py: 28 lines
ddtrace/internal/sma.py: 26 lines
ddtrace/internal/uds.py: 12 lines
ddtrace/internal/uwsgi.py: 8 lines
ddtrace/internal/writer.py: 235 lines
ddtrace/monkey.py: 140 lines
ddtrace/opentracer/__init__.py: 4 lines
ddtrace/opentracer/helpers.py: 3 lines
ddtrace/opentracer/propagation/__init__.py: 2 lines
ddtrace/opentracer/propagation/binary.py: 0 lines
ddtrace/opentracer/propagation/http.py: 13 lines
ddtrace/opentracer/propagation/propagator.py: 8 lines
ddtrace/opentracer/propagation/text.py: 0 lines
ddtrace/opentracer/settings.py: 24 lines
ddtrace/opentracer/span.py: 41 lines
ddtrace/opentracer/span_context.py: 16 lines
ddtrace/opentracer/tags.py: 15 lines
ddtrace/opentracer/tracer.py: 94 lines
ddtrace/opentracer/utils.py: 17 lines
ddtrace/payload.py: 39 lines
ddtrace/pin.py: 94 lines
ddtrace/profiling/__init__.py: 6 lines
ddtrace/profiling/_traceback.py: 2 lines
ddtrace/profiling/auto.py: 0 lines
ddtrace/profiling/bootstrap/__init__.py: 0 lines
ddtrace/profiling/bootstrap/sitecustomize.py: 0 lines
ddtrace/profiling/collector/__init__.py: 31 lines
ddtrace/profiling/collector/memalloc.py: 45 lines
ddtrace/profiling/collector/stack.cpython-35m-darwin.so: 1 lines
ddtrace/profiling/collector/threading.py: 48 lines
ddtrace/profiling/event.py: 28 lines
ddtrace/profiling/exporter/__init__.py: 11 lines
ddtrace/profiling/exporter/file.py: 10 lines
ddtrace/profiling/exporter/http.py: 45 lines
ddtrace/profiling/exporter/pprof.cpython-35m-darwin.so: 1 lines
ddtrace/profiling/exporter/pprof_pb2.py: 514 lines
ddtrace/profiling/exporter/pprof_pre312_pb2.py: 0 lines
ddtrace/profiling/profiler.py: 62 lines
ddtrace/profiling/recorder.py: 24 lines
ddtrace/profiling/scheduler.py: 22 lines
ddtrace/propagation/__init__.py: 1 lines
ddtrace/propagation/http.py: 71 lines
ddtrace/propagation/utils.py: 5 lines
ddtrace/provider.py: 24 lines
ddtrace/runtime/__init__.py: 0 lines
ddtrace/sampler.py: 184 lines
ddtrace/settings/__init__.py: 11 lines
ddtrace/settings/config.py: 90 lines
ddtrace/settings/exceptions.py: 3 lines
ddtrace/settings/http.py: 32 lines
ddtrace/settings/integration.py: 63 lines
ddtrace/span.py: 269 lines
ddtrace/tracer.py: 341 lines
ddtrace/util.py: 0 lines
ddtrace/utils/__init__.py: 14 lines
ddtrace/utils/attr.py: 9 lines
ddtrace/utils/attrdict.py: 12 lines
ddtrace/utils/cache.py: 47 lines
ddtrace/utils/config.py: 4 lines
ddtrace/utils/deprecation.py: 33 lines
ddtrace/utils/formats.py: 61 lines
ddtrace/utils/http.py: 9 lines
ddtrace/utils/importlib.py: 26 lines
ddtrace/utils/time.py: 29 lines
ddtrace/utils/wrappers.py: 13 lines
tests/__init__.py: 0 lines
tests/benchmarks/__init__.py: 0 lines
tests/benchmarks/test_encoding.py: 0 lines
tests/benchmarks/test_propagation.py: 0 lines
tests/benchmarks/test_span_id.py: 0 lines
tests/benchmarks/test_trace_utils.py: 0 lines
tests/benchmarks/test_tracer.py: 0 lines
tests/cache/__init__.py: 0 lines
tests/cache/conftest.py: 8 lines
tests/commands/__init__.py: 0 lines
tests/commands/bootstrap/__init__.py: 0 lines
tests/commands/bootstrap/sitecustomize.py: 0 lines
tests/commands/ddtrace_minimal.py: 0 lines
tests/commands/ddtrace_run_app_name.py: 0 lines
tests/commands/ddtrace_run_argv.py: 0 lines
tests/commands/ddtrace_run_debug.py: 0 lines
tests/commands/ddtrace_run_disabled.py: 0 lines
tests/commands/ddtrace_run_dogstatsd.py: 0 lines
tests/commands/ddtrace_run_enabled.py: 0 lines
tests/commands/ddtrace_run_env.py: 0 lines
tests/commands/ddtrace_run_gevent.py: 0 lines
tests/commands/ddtrace_run_global_tags.py: 0 lines
tests/commands/ddtrace_run_hostname.py: 0 lines
tests/commands/ddtrace_run_integration.py: 0 lines
tests/commands/ddtrace_run_logs_injection.py: 0 lines
tests/commands/ddtrace_run_no_debug.py: 0 lines
tests/commands/ddtrace_run_patched_modules.py: 0 lines
tests/commands/ddtrace_run_priority_sampling.py: 0 lines
tests/commands/ddtrace_run_profiling.py: 0 lines
tests/commands/ddtrace_run_service.py: 0 lines
tests/commands/ddtrace_run_sitecustomize.py: 0 lines
tests/commands/test_runner.py: 0 lines
tests/conftest.py: 9 lines
tests/contrib/__init__.py: 1 lines
tests/contrib/aiobotocore/__init__.py: 0 lines
tests/contrib/aiobotocore/test.py: 0 lines
tests/contrib/aiobotocore/utils.py: 0 lines
tests/contrib/aiohttp/__init__.py: 0 lines
tests/contrib/aiohttp/app/__init__.py: 0 lines
tests/contrib/aiohttp/app/templates/__init__.py: 0 lines
tests/contrib/aiohttp/app/web.py: 0 lines
tests/contrib/aiohttp/test_middleware.py: 0 lines
tests/contrib/aiohttp/test_request.py: 0 lines
tests/contrib/aiohttp/test_request_safety.py: 0 lines
tests/contrib/aiohttp/test_templates.py: 0 lines
tests/contrib/aiohttp/utils.py: 0 lines
tests/contrib/aiopg/__init__.py: 0 lines
tests/contrib/aiopg/py35/__init__.py: 0 lines
tests/contrib/aiopg/py35/test.py: 0 lines
tests/contrib/aiopg/py37/__init__.py: 0 lines
tests/contrib/aiopg/py37/test.py: 0 lines
tests/contrib/aiopg/test.py: 0 lines
tests/contrib/algoliasearch/__init__.py: 0 lines
tests/contrib/algoliasearch/test.py: 0 lines
tests/contrib/asyncio/__init__.py: 0 lines
tests/contrib/asyncio/test_helpers.py: 0 lines
tests/contrib/asyncio/test_patch.py: 0 lines
tests/contrib/asyncio/test_propagation.py: 0 lines
tests/contrib/asyncio/test_tracer.py: 0 lines
tests/contrib/asyncio/test_tracer_safety.py: 0 lines
tests/contrib/asyncio/utils.py: 0 lines
tests/contrib/boto/__init__.py: 0 lines
tests/contrib/boto/test.py: 0 lines
tests/contrib/botocore/__init__.py: 0 lines
tests/contrib/botocore/test.py: 0 lines
tests/contrib/bottle/__init__.py: 0 lines
tests/contrib/bottle/test.py: 0 lines
tests/contrib/bottle/test_autopatch.py: 0 lines
tests/contrib/bottle/test_distributed.py: 0 lines
tests/contrib/cassandra/__init__.py: 0 lines
tests/contrib/cassandra/test.py: 0 lines
tests/contrib/celery/__init__.py: 0 lines
tests/contrib/celery/autopatch.py: 0 lines
tests/contrib/celery/base.py: 0 lines
tests/contrib/celery/test_app.py: 0 lines
tests/contrib/celery/test_autopatch.py: 0 lines
tests/contrib/celery/test_integration.py: 0 lines
tests/contrib/celery/test_old_style_task.py: 0 lines
tests/contrib/celery/test_patch.py: 0 lines
tests/contrib/celery/test_task_deprecation.py: 0 lines
tests/contrib/celery/test_utils.py: 0 lines
tests/contrib/cherrypy/__init__.py: 0 lines
tests/contrib/cherrypy/test_middleware.py: 0 lines
tests/contrib/cherrypy/web.py: 0 lines
tests/contrib/config.py: 0 lines
tests/contrib/consul/__init__.py: 0 lines
tests/contrib/consul/test.py: 0 lines
tests/contrib/dbapi/__init__.py: 0 lines
tests/contrib/dbapi/test_dbapi.py: 0 lines
tests/contrib/django/__init__.py: 0 lines
tests/contrib/django/compat.py: 0 lines
tests/contrib/django/conftest.py: 0 lines
tests/contrib/django/django1_app/__init__.py: 0 lines
tests/contrib/django/django1_app/settings.py: 0 lines
tests/contrib/django/django1_app/urls.py: 0 lines
tests/contrib/django/django_app/__init__.py: 0 lines
tests/contrib/django/django_app/extra_urls.py: 0 lines
tests/contrib/django/django_app/settings.py: 0 lines
tests/contrib/django/django_app/urls.py: 0 lines
tests/contrib/django/middleware.py: 0 lines
tests/contrib/django/test_django.py: 0 lines
tests/contrib/django/test_django_migration.py: 0 lines
tests/contrib/django/test_django_patch.py: 0 lines
tests/contrib/django/test_django_snapshots.py: 0 lines
tests/contrib/django/views.py: 0 lines
tests/contrib/djangorestframework/__init__.py: 0 lines
tests/contrib/djangorestframework/app/__init__.py: 0 lines
tests/contrib/djangorestframework/app/exceptions.py: 0 lines
tests/contrib/djangorestframework/app/settings.py: 0 lines
tests/contrib/djangorestframework/app/views.py: 0 lines
tests/contrib/djangorestframework/conftest.py: 0 lines
tests/contrib/djangorestframework/test_djangorestframework.py: 0 lines
tests/contrib/dogpile_cache/__init__.py: 0 lines
tests/contrib/dogpile_cache/test_tracing.py: 0 lines
tests/contrib/elasticsearch/__init__.py: 0 lines
tests/contrib/elasticsearch/test_elasticsearch.py: 0 lines
tests/contrib/elasticsearch/test_elasticsearch_multi.py: 0 lines
tests/contrib/falcon/__init__.py: 0 lines
tests/contrib/falcon/app/__init__.py: 0 lines
tests/contrib/falcon/app/app.py: 0 lines
tests/contrib/falcon/app/resources.py: 0 lines
tests/contrib/falcon/test_autopatch.py: 0 lines
tests/contrib/falcon/test_distributed_tracing.py: 0 lines
tests/contrib/falcon/test_middleware.py: 0 lines
tests/contrib/falcon/test_suite.py: 0 lines
tests/contrib/fastapi/__init__.py: 0 lines
tests/contrib/fastapi/app.py: 0 lines
tests/contrib/fastapi/test_fastapi.py: 0 lines
tests/contrib/flask/__init__.py: 0 lines
tests/contrib/flask/test_blueprint.py: 0 lines
tests/contrib/flask/test_errorhandler.py: 0 lines
tests/contrib/flask/test_flask_helpers.py: 0 lines
tests/contrib/flask/test_hooks.py: 0 lines
tests/contrib/flask/test_idempotency.py: 0 lines
tests/contrib/flask/test_middleware.py: 0 lines
tests/contrib/flask/test_request.py: 0 lines
tests/contrib/flask/test_signals.py: 0 lines
tests/contrib/flask/test_static.py: 0 lines
tests/contrib/flask/test_template.py: 0 lines
tests/contrib/flask/test_views.py: 0 lines
tests/contrib/flask/web.py: 0 lines
tests/contrib/flask_autopatch/__init__.py: 0 lines
tests/contrib/flask_autopatch/test_flask_autopatch.py: 0 lines
tests/contrib/flask_cache/__init__.py: 0 lines
tests/contrib/flask_cache/test.py: 0 lines
tests/contrib/flask_cache/test_utils.py: 0 lines
tests/contrib/flask_cache/test_wrapper_safety.py: 0 lines
tests/contrib/futures/__init__.py: 0 lines
tests/contrib/futures/test_propagation.py: 0 lines
tests/contrib/gevent/__init__.py: 1 lines
tests/contrib/gevent/monkeypatch.py: 3 lines
tests/contrib/gevent/test_tracer.py: 310 lines
tests/contrib/gevent/utils.py: 23 lines
tests/contrib/grpc/__init__.py: 0 lines
tests/contrib/grpc/hello_pb2.py: 0 lines
tests/contrib/grpc/hello_pb2_grpc.py: 0 lines
tests/contrib/grpc/test_grpc.py: 0 lines
tests/contrib/grpc/test_grpc_utils.py: 0 lines
tests/contrib/httplib/__init__.py: 0 lines
tests/contrib/httplib/test_httplib.py: 0 lines
tests/contrib/httplib/test_httplib_distributed.py: 0 lines
tests/contrib/jinja2/__init__.py: 0 lines
tests/contrib/jinja2/test_jinja2.py: 0 lines
tests/contrib/kombu/__init__.py: 0 lines
tests/contrib/kombu/test.py: 0 lines
tests/contrib/logging/__init__.py: 0 lines
tests/contrib/logging/test_logging.py: 0 lines
tests/contrib/mako/__init__.py: 0 lines
tests/contrib/mako/test_mako.py: 0 lines
tests/contrib/molten/__init__.py: 0 lines
tests/contrib/molten/test_molten.py: 0 lines
tests/contrib/molten/test_molten_di.py: 0 lines
tests/contrib/mongoengine/__init__.py: 0 lines
tests/contrib/mongoengine/test.py: 0 lines
tests/contrib/mongoengine/test_backwards.py: 0 lines
tests/contrib/mysql/__init__.py: 0 lines
tests/contrib/mysql/test_backwards_compatibility.py: 0 lines
tests/contrib/mysql/test_mysql.py: 0 lines
tests/contrib/mysqldb/__init__.py: 0 lines
tests/contrib/mysqldb/test_mysqldb.py: 0 lines
tests/contrib/patch.py: 0 lines
tests/contrib/psycopg/__init__.py: 0 lines
tests/contrib/psycopg/test_psycopg.py: 0 lines
tests/contrib/pylibmc/__init__.py: 0 lines
tests/contrib/pylibmc/test.py: 0 lines
tests/contrib/pylons/__init__.py: 0 lines
tests/contrib/pylons/app/__init__.py: 0 lines
tests/contrib/pylons/app/controllers/__init__.py: 0 lines
tests/contrib/pylons/app/controllers/root.py: 0 lines
tests/contrib/pylons/app/lib/__init__.py: 0 lines
tests/contrib/pylons/app/lib/base.py: 0 lines
tests/contrib/pylons/app/lib/helpers.py: 0 lines
tests/contrib/pylons/app/middleware.py: 0 lines
tests/contrib/pylons/app/router.py: 0 lines
tests/contrib/pylons/app/web.py: 0 lines
tests/contrib/pylons/test_pylons.py: 0 lines
tests/contrib/pymemcache/__init__.py: 0 lines
tests/contrib/pymemcache/autopatch/__init__.py: 0 lines
tests/contrib/pymemcache/autopatch/test.py: 0 lines
tests/contrib/pymemcache/test_client.py: 0 lines
tests/contrib/pymemcache/test_client_mixin.py: 0 lines
tests/contrib/pymemcache/utils.py: 0 lines
tests/contrib/pymongo/__init__.py: 0 lines
tests/contrib/pymongo/test.py: 0 lines
tests/contrib/pymongo/test_spec.py: 0 lines
tests/contrib/pymysql/__init__.py: 0 lines
tests/contrib/pymysql/test_backwards_compatibility.py: 0 lines
tests/contrib/pymysql/test_pymysql.py: 0 lines
tests/contrib/pynamodb/__init__.py: 0 lines
tests/contrib/pynamodb/test_pynamodb.py: 0 lines
tests/contrib/pyodbc/__init__.py: 0 lines
tests/contrib/pyodbc/test_pyodbc.py: 0 lines
tests/contrib/pyramid/__init__.py: 0 lines
tests/contrib/pyramid/app/__init__.py: 0 lines
tests/contrib/pyramid/app/web.py: 0 lines
tests/contrib/pyramid/test_pyramid.py: 0 lines
tests/contrib/pyramid/test_pyramid_autopatch.py: 0 lines
tests/contrib/pyramid/utils.py: 0 lines
tests/contrib/pytest/__init__.py: 0 lines
tests/contrib/pytest/test_pytest.py: 0 lines
tests/contrib/redis/__init__.py: 0 lines
tests/contrib/redis/test_redis.py: 0 lines
tests/contrib/rediscluster/__init__.py: 0 lines
tests/contrib/rediscluster/test.py: 0 lines
tests/contrib/requests/__init__.py: 0 lines
tests/contrib/requests/test_requests.py: 0 lines
tests/contrib/requests/test_requests_distributed.py: 0 lines
tests/contrib/sanic/__init__.py: 0 lines
tests/contrib/sanic/conftest.py: 0 lines
tests/contrib/sanic/test_sanic.py: 0 lines
tests/contrib/sanic/test_sanic_server.py: 0 lines
tests/contrib/sqlalchemy/__init__.py: 0 lines
tests/contrib/sqlalchemy/mixins.py: 0 lines
tests/contrib/sqlalchemy/test_mysql.py: 0 lines
tests/contrib/sqlalchemy/test_patch.py: 0 lines
tests/contrib/sqlalchemy/test_postgres.py: 0 lines
tests/contrib/sqlalchemy/test_sqlite.py: 0 lines
tests/contrib/sqlite3/__init__.py: 0 lines
tests/contrib/sqlite3/test_sqlite3.py: 0 lines
tests/contrib/tornado/__init__.py: 0 lines
tests/contrib/tornado/test_config.py: 0 lines
tests/contrib/tornado/test_executor_decorator.py: 0 lines
tests/contrib/tornado/test_safety.py: 0 lines
tests/contrib/tornado/test_stack_context.py: 0 lines
tests/contrib/tornado/test_tornado_template.py: 0 lines
tests/contrib/tornado/test_tornado_web.py: 0 lines
tests/contrib/tornado/test_wrap_decorator.py: 0 lines
tests/contrib/tornado/utils.py: 0 lines
tests/contrib/tornado/web/__init__.py: 0 lines
tests/contrib/tornado/web/app.py: 0 lines
tests/contrib/tornado/web/compat.py: 0 lines
tests/contrib/tornado/web/uimodules.py: 0 lines
tests/contrib/urllib3/__init__.py: 0 lines
tests/contrib/urllib3/test_urllib3.py: 0 lines
tests/contrib/urllib3/test_urllib3_patch.py: 0 lines
tests/contrib/uwsgi/__init__.py: 0 lines
tests/contrib/vertica/__init__.py: 0 lines
tests/contrib/vertica/test_vertica.py: 0 lines
tests/contrib/wsgi/__init__.py: 0 lines
tests/contrib/wsgi/test_wsgi.py: 0 lines
tests/ddtrace_run.py: 0 lines
tests/integration/__init__.py: 0 lines
tests/integration/hello.py: 0 lines
tests/integration/test_debug.py: 0 lines
tests/integration/test_integration.py: 0 lines
tests/integration/test_integration_snapshots.py: 0 lines
tests/opentracer/__init__.py: 1 lines
tests/opentracer/conftest.py: 0 lines
tests/opentracer/core/__init__.py: 0 lines
tests/opentracer/core/test_dd_compatibility.py: 0 lines
tests/opentracer/core/test_span.py: 0 lines
tests/opentracer/core/test_span_context.py: 0 lines
tests/opentracer/core/test_tracer.py: 0 lines
tests/opentracer/core/test_utils.py: 0 lines
tests/opentracer/test_tracer_asyncio.py: 0 lines
tests/opentracer/test_tracer_gevent.py: 0 lines
tests/opentracer/test_tracer_tornado.py: 0 lines
tests/opentracer/utils.py: 4 lines
tests/profiling/__init__.py: 0 lines
tests/profiling/collector/__init__.py: 0 lines
tests/profiling/collector/conftest.py: 0 lines
tests/profiling/collector/test_collector.py: 0 lines
tests/profiling/collector/test_memalloc.py: 0 lines
tests/profiling/collector/test_stack.py: 0 lines
tests/profiling/collector/test_threading.py: 0 lines
tests/profiling/collector/test_traceback.py: 0 lines
tests/profiling/conftest.py: 0 lines
tests/profiling/exporter/__init__.py: 0 lines
tests/profiling/exporter/test_file.py: 0 lines
tests/profiling/exporter/test_http.py: 0 lines
tests/profiling/exporter/test_pprof.py: 0 lines
tests/profiling/gevent_fork.py: 0 lines
tests/profiling/run.py: 0 lines
tests/profiling/simple_program.py: 0 lines
tests/profiling/simple_program_fork.py: 0 lines
tests/profiling/simple_program_gevent.py: 0 lines
tests/profiling/test_accuracy.py: 0 lines
tests/profiling/test_main.py: 0 lines
tests/profiling/test_profiler.py: 0 lines
tests/profiling/test_recorder.py: 0 lines
tests/profiling/test_scheduler.py: 0 lines
tests/profiling/test_traceback.py: 0 lines
tests/profiling/test_uwsgi.py: 0 lines
tests/profiling/utils.py: 0 lines
tests/profiling/uwsgi-app.py: 0 lines
tests/profiling/wrong_program_gevent.py: 0 lines
tests/runtime/__init__.py: 0 lines
tests/runtime/test_runtime_metrics_api.py: 0 lines
tests/subprocesstest.py: 82 lines
tests/test_module/__init__.py: 0 lines
tests/test_module2/__init__.py: 0 lines
tests/tracer/__init__.py: 1 lines
tests/tracer/runtime/__init__.py: 1 lines
tests/tracer/runtime/fork_disable.py: 12 lines
tests/tracer/runtime/fork_enable.py: 0 lines
tests/tracer/runtime/test_container.py: 104 lines
tests/tracer/runtime/test_metric_collectors.py: 44 lines
tests/tracer/runtime/test_metrics.py: 88 lines
tests/tracer/runtime/test_runtime_id.py: 17 lines
tests/tracer/runtime/test_runtime_metrics.py: 126 lines
tests/tracer/runtime/test_tag_collectors.py: 6 lines
tests/tracer/runtime/utils.py: 32 lines
tests/tracer/test_agent.py: 64 lines
tests/tracer/test_buffer.py: 62 lines
tests/tracer/test_compat.py: 74 lines
tests/tracer/test_context.py: 78 lines
tests/tracer/test_encoders.py: 228 lines
tests/tracer/test_ext.py: 17 lines
tests/tracer/test_filters.py: 36 lines
tests/tracer/test_forksafe.py: 74 lines
tests/tracer/test_global_config.py: 127 lines
tests/tracer/test_helpers.py: 36 lines
tests/tracer/test_hooks.py: 16 lines
tests/tracer/test_hostname.py: 7 lines
tests/tracer/test_http.py: 26 lines
tests/tracer/test_instance_config.py: 79 lines
tests/tracer/test_logger.py: 171 lines
tests/tracer/test_monkey.py: 10 lines
tests/tracer/test_payload.py: 56 lines
tests/tracer/test_periodic.py: 78 lines
tests/tracer/test_pin.py: 125 lines
tests/tracer/test_processors.py: 160 lines
tests/tracer/test_propagation.py: 85 lines
tests/tracer/test_rand.py: 110 lines
tests/tracer/test_rate_limiter.py: 123 lines
tests/tracer/test_sampler.py: 507 lines
tests/tracer/test_service.py: 21 lines
tests/tracer/test_settings.py: 232 lines
tests/tracer/test_sma.py: 63 lines
tests/tracer/test_span.py: 477 lines
tests/tracer/test_trace_utils.py: 323 lines
tests/tracer/test_tracer.py: 902 lines
tests/tracer/test_utils.py: 255 lines
tests/tracer/test_writer.py: 339 lines
tests/utils.py: 269 lines
tests/vendor/__init__.py: 0 lines
tests/vendor/test_contextvars.py: 0 lines
tests/vendor/test_dogstatsd.py: 0 lines
tests/wait-for-services.py: 0 lines

coverage run + coverage html work fine without pytest-cov

debug file
Coverage code matching: 
Python stdlib matching: 
Omit matching: 
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/threading.py': is in the stdlib
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/execfile.py': is part of coverage.py
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/importlib/util.py': is in the stdlib
Not tracing '': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_virtualenv.py'
Not tracing '': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest/collect.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/typing.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/functools.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/abc.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_weakrefset.py': is in the stdlib
Not tracing '': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/re.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sre_compile.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sre_parse.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_version.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/deprecated.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/warning_types.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/converters.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_compat.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/platform.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_make.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/uuid.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/_endian.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/util.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/dyld.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/framework.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/dylib.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/posixpath.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_collections_abc.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/os.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/genericpath.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_config.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/setters.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/exceptions.py'
Not tracing '': empty string isn't a file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/filters.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/validators.py'
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_cmp.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_funcs.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_version_info.py'
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/compat.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/outcomes.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/enum.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/importlib_metadata/__init__.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/csv.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/zipp.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/zipfile.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/importlib_metadata/_compat.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pathlib.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/parse.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/collections/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/contextlib.py': is in the stdlib
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/assertion/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/assertion/rewrite.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_error.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_vendored_packages/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_vendored_packages/apipkg/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_vendored_packages/apipkg/version.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_version.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_io/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_io/terminalwriter.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_io/wcwidth.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_io/saferepr.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/assertion/util.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_code/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_code/code.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/_version.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/manager.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/_tracing.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/callers.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/hooks.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_code/source.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/bisect.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/pathlib.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pathlib2/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/six.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_path/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_path/local.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_path/common.py'
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Tracing ''
Tracing ''
Tracing ''
Tracing ''
Tracing ''
Tracing ''
Tracing ''
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/inspect.py': is in the stdlib
Tracing ''
Tracing ''
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/config/__init__.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/argparse.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/hookspec.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/config/exceptions.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/config/findpaths.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/iniconfig/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/store.py'
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/main.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/nodes.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/fixtures.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/config/argparsing.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/mark/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/mark/expression.py'
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/mark/structures.py'
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_builtin.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/reports.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/runner.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/bdb.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/timing.py'
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/assertion/truncate.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/debugging.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/freeze_support.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/python.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/python_api.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/recwarn.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/files.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/python.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/phystokens.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/backward.py': is part of coverage.py
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/tokenize.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest/__main__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/helpconfig.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/terminal.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/unittest.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/skipping.py'
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/capture.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/tempfile.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/tmpdir.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/monkeypatch.py'
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/pastebin.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/nose.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/junitxml.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/etree/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/etree/ElementTree.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/etree/ElementPath.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/doctest.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/cacheprovider.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/setuponly.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/setupplan.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/stepwise.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/warnings.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/logging.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/logging/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/string.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/weakref.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/faulthandler.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/copy.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/copyreg.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_argcomplete.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/gettext.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/locale.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/encodings/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/shutil.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/toml/decoder.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/codecs.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_bootlocale.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/shlex.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/configparser.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/fnmatch.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/tests/__init__.py'
Tracing 'p403n1x87/dd-trace-py/tests/cache/__init__.py'
Tracing 'p403n1x87/dd-trace-py/tests/cache/conftest.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/__init__.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pkgutil.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/plistlib.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/parsers/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/parsers/expat.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/parser.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/feedparser.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/errors.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/message.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/uu.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/quopri.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/utils.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_parseaddr.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/calendar.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/charset.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/base64mime.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/base64.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/quoprimime.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/encoders.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_policybase.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/header.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_encoded_words.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/iterators.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/extern/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/appdirs.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/__about__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/version.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/_structures.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/_typing.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/specifiers.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/_compat.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/utils.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/requirements.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/pyparsing.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/traceback.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/linecache.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/markers.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sysconfig.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_osx_support.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/warnings.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ntpath.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/ddtrace/monkey.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/__init__.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/logger.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/deprecation.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/__init__.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/_utils.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/moves.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/__init__.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/wrappers.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/decorators.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/importer.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/removals.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/renames.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/updating.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/formats.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/__init__.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/base.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/context.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/context_async.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/compat.py': is inside an --omit pattern
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/base_events.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/_base.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/process.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/queue.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/multiprocessing/connection.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/multiprocessing/reduction.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pickle.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_compat_pickle.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/multiprocessing/util.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/thread.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/compat.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/coroutines.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/events.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/futures.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/log.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/tasks.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/types.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/locks.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/protocols.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/queues.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/streams.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/subprocess.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/transports.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/unix_events.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/base_subprocess.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/constants.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/selector_events.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ssl.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ipaddress.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/sslproto.py': is in the stdlib
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/route.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/format.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/_hooks.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/config.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/cache.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/pin.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/integration.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/attrdict.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/exceptions.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/span.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/constants.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/errors.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/net.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/priority.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/compat.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/client.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/textwrap.py': is in the stdlib
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/contextvars/__init__.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/tracer.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/filters.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/processor/__init__.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/processor/trace.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/writer.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/agent.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/uds.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/periodic.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/nogevent.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_config.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_compat.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/importlib/__init__.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/libev/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_hub_local.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_util.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/greenlet/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/exceptions.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_hub_primitives.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_greenlet_primitives.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_waiter.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/timeout.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/greenlet.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_tblib.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/hub.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_ident.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/os.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/signal.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/monkey.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/service.py'
Tracing ''
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/sampler.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/rate_limiter.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/time.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/buffer.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/encoding.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/container.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/sma.py'
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/context.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/system.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/debug.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/hostname.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/dogstatsd.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/provider.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/plugin.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/compat.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/embed.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_mock/__init__.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_mock/plugin.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/__init__.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/result.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/util.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/case.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/difflib.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/suite.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/loader.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/main.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/runner.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/signals.py': is in the stdlib
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/mock.py': is in the stdlib
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_mock/_util.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/importlib.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/pytest/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/pytest/plugin.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/ci.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/git.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/test.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/trace_utils.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/propagation/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/propagation/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/propagation/utils.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/wrappers.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/pytest/constants.py'
Tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/engine.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/control.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/misc.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/config.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/debug.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/plugin_support.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/context.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/collector.py': is part of coverage.py
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/sqldata.py': is part of coverage.py
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/random.py': is in the stdlib
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/inorout.py': is part of coverage.py
Source matching against trees 
Omit matching: 
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/threading.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/engine.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/os.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/posixpath.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/genericpath.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/config/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/manager.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/inspect.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/hooks.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/callers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_path/local.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_error.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_path/common.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pathlib2/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/contextlib.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/pathlib.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/enum.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_collections_abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/importlib/__init__.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/assertion/rewrite.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/store.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/typing.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pluggy/_tracing.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/conftest.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/re.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sre_compile.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sre_parse.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/mark/structures.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/validators.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/importlib/abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_weakrefset.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/fnmatch.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/pytester.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_virtualenv.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/py/_vendored_packages/apipkg/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/fixtures.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/functools.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/config/argparsing.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/tests/conftest.py'
Tracing 'p403n1x87/dd-trace-py/tests/utils.py'
Tracing 'p403n1x87/dd-trace-py/tests/subprocesstest.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/capture.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/warnings.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/warnings.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/argparse.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/gettext.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/locale.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/encodings/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/terminal.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/helpconfig.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_io/terminalwriter.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/shutil.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_argcomplete.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/copy.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/plugin.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/setupplan.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/setuponly.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/mark/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/cacheprovider.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/python.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/main.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/nodes.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_bootlocale.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/codecs.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/json/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/json/decoder.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/pytest/plugin.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_mock/plugin.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_mock/_util.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/mock.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/faulthandler.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/stepwise.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/junitxml.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/tmpdir.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/monkeypatch.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/converters.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/skipping.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/debugging.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pdb.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/cmd.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/code.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/codeop.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/pastebin.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/logging.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/logging/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_io/wcwidth.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/runner.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/platform.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/importlib_metadata/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pathlib.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/parser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/feedparser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/message.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_policybase.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/assertion/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/doctest.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/reports.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/tests/contrib/__init__.py'
Tracing 'p403n1x87/dd-trace-py/tests/contrib/gevent/__init__.py'
Tracing 'p403n1x87/dd-trace-py/tests/contrib/gevent/test_tracer.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/pool.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/queue.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_util.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/importlib_metadata/_compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/six.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/extern/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/event.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/lock.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_semaphore.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_imap.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/span.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/logs.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/ext/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/ext/tags.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/tags.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/scope.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/scope_manager.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/tracer.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/propagation.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/collections/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/scope_managers/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/scope_managers/gevent.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/opentracing/scope_managers/constants.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/gevent/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/importlib.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/gevent/patch.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/gevent/greenlet.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/contrib/gevent/provider.py'
Tracing 'p403n1x87/dd-trace-py/tests/opentracer/__init__.py'
Tracing 'p403n1x87/dd-trace-py/tests/opentracer/utils.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/helpers.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/tracer.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/config.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/propagation/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/propagation/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/span_context.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/propagation/propagator.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/logger.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/formats.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/settings.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/span.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/tags.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/opentracer/utils.py'
Tracing 'p403n1x87/dd-trace-py/tests/contrib/gevent/utils.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/unittest.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_code/code.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/_code/source.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/linecache.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/tokenize.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/loader.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/util.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/pin.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/unittest/case.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_pytest/nose.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/tracer.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/provider.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/contextvars/__init__.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/sampler.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/rate_limiter.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/agent.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/parse.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/dogstatsd.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/base.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/writer.py'
Tracing ''
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/container.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/sma.py'
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/processor/trace.py'
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/processor/__init__.py'
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/_hooks.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/removals.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/periodic.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/service.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/runtime_metrics.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/forksafe.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/constants.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/metric_collectors.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/collector.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/tag_collectors.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_make.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/copyreg.py': falls outside the --source spec
Not tracing '': empty string isn't a file name
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/uuid.py': falls outside the --source spec
Tracing ''
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/hdrs.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/multidict/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/multidict/_abc.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/multidict/_compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/multidict/_multidict_base.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/client.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/yarl/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/yarl/_url.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/idna/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/idna/package_data.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/idna/core.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/idna/idnadata.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/idna/intranges.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/yarl/_quoting.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/http.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/server.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/html/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/html/entities.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/mimetypes.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/socketserver.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/http_exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/typedefs.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/http_parser.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/base_protocol.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/tcp_helpers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/helpers.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/cgi.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/netrc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/request.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/error.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/response.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/async_timeout/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/log.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/idna_ssl.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/coroutines.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/types.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_compat.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/http_writer.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/cookies.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/streams.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/http_websocket.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/random.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/payload.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/client_exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/client_reqrep.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/multipart.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/formdata.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/universaldetector.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/charsetgroupprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/enums.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/charsetprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/escprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/codingstatemachine.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/escsm.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/latin1prober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/mbcsgroupprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/utf8prober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/mbcssm.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/sjisprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/mbcharsetprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/chardistribution.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/euctwfreq.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/euckrfreq.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/gb2312freq.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/big5freq.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/jisfreq.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/jpcntx.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/eucjpprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/gb2312prober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/euckrprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/cp949prober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/big5prober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/euctwprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/sbcsgroupprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/sbcharsetprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/langcyrillicmodel.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/langgreekmodel.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/langbulgarianmodel.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/langthaimodel.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/langhebrewmodel.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/hebrewprober.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/langturkishmodel.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/chardet/version.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/client_ws.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/connector.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/client_proto.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/locks.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/resolver.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/cookiejar.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/tracing.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/signals.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/frozenlist.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/payload_streamer.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiohttp/worker.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/session.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/credentials.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/getpass.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/_version.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/parser/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/parser/_parser.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/relativedelta.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/_common.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/tz/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/tz/tz.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/tz/_common.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/tz/_factories.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/tz/win.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/weakref.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/dateutil/parser/isoparser.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/configloader.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/six.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/requests/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/requests/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/requests/packages/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/requests/packages/urllib3/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/vendored/requests/packages/urllib3/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/connectionpool.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/packages/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/packages/ssl_match_hostname/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/packages/six.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/connection.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/connection.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/wait.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/contrib/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/contrib/_appengine_environ.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/socket.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/request.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/response.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/ssl_.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/hmac.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/url.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/timeout.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/retry.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/_collections.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/request.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/filepost.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/fields.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/response.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/util/queue.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/poolmanager.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/_version.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/etree/cElementTree.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/config.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/endpoint.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/awsrequest.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/httpsession.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/contrib/pyopenssl.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/certifi/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/certifi/core.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/hooks.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/history.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/response.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/parsers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/eventstream.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/session.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/client.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/waiter.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/parser.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/lexer.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/ast.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/visitor.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/jmespath/functions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/service.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/client.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/method.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/params.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/shape.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/example.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/sharedexample.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/waiter.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/paginator.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/bcdoc/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/bcdoc/restdoc.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/bcdoc/docstringparser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/html/parser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_markupbase.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/bcdoc/style.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/docs/docstring.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/auth.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/model.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/paginate.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/args.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/serialize.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/validate.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/signers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/discovery.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/configprovider.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/errorfactory.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/handlers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/retryhandler.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/translate.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/loaders.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/regions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/botocore/monitoring.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/client.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/paginate.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/async_generator/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/async_generator/_version.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/async_generator/_impl.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/async_generator/_util.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/args.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/config.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/endpoint.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/response.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/wrapt/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/wrapt/wrappers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/wrapt/decorators.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/wrapt/importer.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/_endpoint_helpers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/waiter.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/parsers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/aiobotocore/eventstream.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/_version.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/transport.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/connection/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/connection/base.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/gzip.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/connection/http_requests.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/__version__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/certs.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/_internal_utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/compat.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/cookiejar.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/cookies.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/structures.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/packages.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/models.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/encodings/idna.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/stringprep.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/hooks.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/auth.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/status_codes.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/api.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/sessions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/requests/adapters.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/urllib3/contrib/socks.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/connection/http_urllib3.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/connection_pool.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/serializer.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/async_search.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/autoscaling.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/cat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/ccr.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/cluster.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/dangling_indices.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/data_frame.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/deprecation.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/enrich.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/eql.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/features.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/graph.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/ilm.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/indices.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/ingest.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/license.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/logstash.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/migration.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/ml.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/monitoring.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/nodes.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/remote.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/rollup.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/searchable_snapshots.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/security.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/slm.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/snapshot.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/sql.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/ssl.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/tasks.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/text_structure.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/transform.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/watcher.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/elasticsearch/client/xpack.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pynamodb/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/subprocess.py': falls outside the --source spec
Source matching against trees 
Omit matching: 
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/threading.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/codecs.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/site.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sysconfig.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/posixpath.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/genericpath.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_bootlocale.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_collections_abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/os.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pytest_cov/embed.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/control.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/coverage/collector.py': falls outside the --source spec
Source matching against trees 
Omit matching: 
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/threading.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/codecs.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/site.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_sitebuiltins.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/posixpath.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/_virtualenv.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/bin/ddtrace-run': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/importlib_metadata/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/__future__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/csv.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/zipp.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/zipfile.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/struct.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/re.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sre_compile.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sre_parse.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_weakrefset.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/importlib_metadata/_compat.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pathlib.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/urllib/parse.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/collections/__init__.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/functools.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/contextlib.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/genericpath.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/configparser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/importlib/__init__.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/__init__.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pkgutil.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/weakref.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_collections_abc.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/plistlib.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/parsers/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/xml/parsers/expat.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/enum.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/parser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/feedparser.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/errors.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/message.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/uu.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/quopri.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/utils.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_parseaddr.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/calendar.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/charset.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/base64mime.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/base64.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/quoprimime.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/string.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/encoders.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_policybase.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/header.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/_encoded_words.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/email/iterators.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/tempfile.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/textwrap.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/extern/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/appdirs.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/__about__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/version.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/_structures.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/_typing.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/specifiers.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/_compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/utils.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/requirements.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/pyparsing.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/traceback.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/linecache.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/tokenize.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/copy.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/copyreg.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/pkg_resources/_vendor/packaging/markers.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/sysconfig.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/os.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_osx_support.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/platform.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/warnings.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/inspect.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ntpath.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/subprocess.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_bootlocale.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/monkey.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/typing.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/__init__.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/logger.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/logging/__init__.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/deprecation.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/__init__.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/_utils.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/six.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/moves.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/__init__.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/wrappers.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/decorators.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/wrapt/importer.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/removals.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/renames.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/debtcollector/updating.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/formats.py'
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/__init__.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/base.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/context.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/context_async.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/compat.py': is inside an --omit pattern
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/base_events.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/_base.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/process.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/queue.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/multiprocessing/connection.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/multiprocessing/reduction.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/pickle.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/_compat_pickle.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/concurrent/futures/thread.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/compat.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/coroutines.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/events.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/futures.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/log.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/tasks.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/types.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/locks.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/protocols.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/queues.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/streams.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/subprocess.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/transports.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/unix_events.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/base_subprocess.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/constants.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/selector_events.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ssl.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ipaddress.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/asyncio/sslproto.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/route.py': is inside an --omit pattern
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/dogstatsd/format.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/_hooks.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/converters.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_make.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/uuid.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/_endian.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/util.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/dyld.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/framework.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/ctypes/macholib/dylib.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_config.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/setters.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/exceptions.py': falls outside the --source spec
Not tracing '': empty string isn't a file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/filters.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/validators.py': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Not tracing '': not a real file name
Not tracing '': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_cmp.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_funcs.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/attr/_version_info.py': falls outside the --source spec
Not tracing '': falls outside the --source spec
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/config.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/cache.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/pin.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/integration.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/attrdict.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/settings/exceptions.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/span.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/constants.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/errors.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/http.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/net.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/ext/priority.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/compat.py'
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/__init__.py': falls outside the --source spec
Not tracing '.pyenv/versions/3.5.10/lib/python3.5/http/client.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/ddtrace/vendor/contextvars/__init__.py': is inside an --omit pattern
Tracing 'p403n1x87/dd-trace-py/ddtrace/tracer.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/filters.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/processor/__init__.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/processor/trace.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/writer.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/agent.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/uds.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/periodic.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/nogevent.py'
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_config.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_compat.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/libev/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_hub_local.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_util.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/greenlet/__init__.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/exceptions.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_hub_primitives.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_greenlet_primitives.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_waiter.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/timeout.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/greenlet.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_tblib.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/hub.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/_ident.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/os.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/signal.py': falls outside the --source spec
Not tracing 'p403n1x87/dd-trace-py/.tox/gevent_contrib-py35-gevent13-sslmodules3-sslmodules/lib/python3.5/site-packages/gevent/monkey.py': falls outside the --source spec
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/service.py'
Tracing ''
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/sampler.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/rate_limiter.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/utils/time.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/buffer.py'
Not tracing '': not a real file name
Tracing ''
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/encoding.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/__init__.py'
Tracing 'p403n1x87/dd-trace-py/ddtrace/internal/runtime/container.py'
Not tracing '': not a real file name
Tracing '

P403n1x87 added a commit to P403n1x87/coveragepy that referenced this issue May 24, 2021
As described in nedbat#1160, occasionally some shared object paths make their way into the coverage report. When they get to `get_python_source` the call to `source_encoding` fails because the content of these files is binary. The change allows `get_python_source` to handle these cases gracefully while still reporting the issue.

Fixes nedbat#1160.
@nedbat
Copy link
Owner

nedbat commented Oct 17, 2021

Is this still happening for you? The debug output seems mysterious until I realized the empty strings were because of HTML-tag-like things that Markdown is hiding.

@bdice
Copy link

bdice commented Oct 17, 2021

@nedbat I just saw this error message with coverage==5.5 and pytest-cov==2.12.1, and also with coverage==6.0.2 and pytest-cov==3.0.0 on Python 3.9. This is a new failure for our package, which also uses compiled Cython modules. I added some new doctests in this PR and this error started appearing.

CI logs for coverage==5.5 and pytest-cov==2.12.1: https://app.circleci.com/pipelines/github/glotzerlab/freud/3247/workflows/dbe8c8c9-ff33-408f-8d23-f90091dfda31/jobs/12802

CI logs for coverage==6.0.2 and pytest-cov==3.0.0: https://app.circleci.com/pipelines/github/glotzerlab/freud/3248/workflows/13ccdc97-a04e-4c31-b765-db37561b7c01/jobs/12808

These commands all cause the failure:

  • coverage -m pytest
  • python -m pytest --cov
  • python -m pytest --cov --cov-config=setup.cfg --cov-report=xml tests/ -v

Calling pytest via python -m pytest without coverage succeeds.

I have attached the debug information requested above:

$ coverage debug data

-- data ------------------------------------------------------ path: /root/ci/freud/.coverage has_arcs: True 22 files: /root/ci/freud/freud/__init__.py: 8 lines /root/ci/freud/freud/box.cpython-39-x86_64-linux-gnu.so: 1 lines /root/ci/freud/freud/box.pyx: 208 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/cluster.cpython-39-x86_64-linux-gnu.so: 1 lines /root/ci/freud/freud/cluster.pyx: 38 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/data.py: 87 lines /root/ci/freud/freud/density.cpython-39-x86_64-linux-gnu.so: 1 lines /root/ci/freud/freud/density.pyx: 103 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/diffraction.cpython-39-x86_64-linux-gnu.so: 4 lines /root/ci/freud/freud/diffraction.pyx: 125 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/environment.cpython-39-x86_64-linux-gnu.so: 6 lines /root/ci/freud/freud/environment.pyx: 177 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/errors.py: 5 lines /root/ci/freud/freud/interface.pyx: 9 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/locality.pyx: 147 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/msd.pyx: 47 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/order.cpython-39-x86_64-linux-gnu.so: 2 lines /root/ci/freud/freud/order.pyx: 132 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/parallel.pyx: 10 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/plot.py: 237 lines /root/ci/freud/freud/pmft.pyx: 91 lines [Cython.Coverage.Plugin] /root/ci/freud/freud/util.pyx: 35 lines [Cython.Coverage.Plugin]

debug.out

Source matching against trees Not tracing '/usr/lib/python3.9/threading.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/engine.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/os.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/posixpath.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/genericpath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/config/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_manager.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/inspect.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_hooks.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/enum.py': falls outside the --source spec Not tracing '': not a real file name Not tracing '/usr/lib/python3.9/functools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_callers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_result.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_path/local.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_error.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_path/common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_vendored_packages/apipkg/__init__.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/assertion/rewrite.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/store.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/typing.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/pathlib.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/pathlib.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/fnmatch.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_tracing.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_virtualenv.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_builtin.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/re.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/sre_compile.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/sre_parse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/capture.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/warnings.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/contextlib.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/warnings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/config/argparsing.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/argparse.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/gettext.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/_collections_abc.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/locale.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/terminal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/helpconfig.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_io/terminalwriter.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/shutil.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/types.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_argcomplete.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/plugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/setupplan.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/setuponly.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/mark/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/cacheprovider.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/python.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/main.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/nodes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/mark/structures.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/deprecated.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/_bootlocale.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/codecs.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/json/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/json/decoder.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/faulthandler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/stepwise.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/junitxml.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/tmpdir.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/monkeypatch.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/skipping.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/debugging.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/pdb.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/cmd.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/code.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/codeop.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/pastebin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/logging.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/logging/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/_weakrefset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/fixtures.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/compat.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_io/wcwidth.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/runner.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/platform.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/importlib/metadata.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/__init__.py': falls outside the --source spec Not tracing '': not a real file name Not tracing '/usr/lib/python3.9/email/parser.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/feedparser.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/errors.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/_policybase.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/header.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/quoprimime.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/base64mime.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/base64.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/charset.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/encoders.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/quopri.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/utils.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/_parseaddr.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/calendar.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/abc.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/message.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/uu.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/_encoded_words.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/iterators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/assertion/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/doctest.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/shlex.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_code/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_code/code.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/reports.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/importlib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_box_Box.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/distutils/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/distutils/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_api/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_api/deprecation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/cbook/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/gzip.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_globals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/__config__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_distributor_init.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/multiarray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/overrides.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/compat/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/compat/_inspect.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/compat/py3k.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/collections/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/textwrap.py': falls outside the --source spec Not tracing '<__array_function__ internals>': not a real file name Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/umath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/numerictypes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_string_helpers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_type_aliases.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_dtype.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/numeric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/shape_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/fromnumeric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_methods.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_ufunc_config.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/arrayprint.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_asarray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/defchararray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/records.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/memmap.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/function_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/machar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/getlimits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/einsumfunc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_add_newdocs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_add_newdocs_scalars.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_dtype_ctypes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_internal.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/ctypes/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/ctypes/_endian.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/copyreg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_pytesttester.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/mixins.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/scimath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/type_check.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/ufunclike.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/index_tricks.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/matrixlib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/matrixlib/defmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/linalg/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/linalg/linalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/twodim_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/stride_tricks.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/function_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/histograms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/nanfunctions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/shape_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/polynomial.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/utils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/arraysetops.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/npyio.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/format.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/_datasource.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/_iotools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/arrayterator.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/arraypad.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/fft/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/fft/_pocketfft.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/fft/helper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/polynomial.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/polyutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/_polybase.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/chebyshev.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/legendre.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/hermite.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/hermite_e.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/laguerre.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/random/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/random/_pickle.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/secrets.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/hmac.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/random.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ctypeslib.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ma/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ma/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ma/extras.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/docstring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/rcsetup.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/animation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/Image.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageMode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/TiffTags.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/_binary.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/_util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_animation_data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/colors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/PngImagePlugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageChops.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImagePalette.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/GimpGradientFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/GimpPaletteFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageColor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/PaletteFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageSequence.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/scale.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/ticker.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/transforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/path.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/bezier.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/weakref.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_color_data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/fontconfig_pattern.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pyparsing.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/traceback.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/linecache.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/tokenize.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/copy.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_enums.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/cycler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/six.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/dates.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/rrule.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/_common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/relativedelta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/parser/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/parser/_parser.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/tz.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/_common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/_factories.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/win.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/parser/isoparser.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/units.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/result.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/util.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/case.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/difflib.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/suite.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/loader.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/main.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/runner.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/signals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/utils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/decorators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/nosetester.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_code/code.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_code/source.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/ast.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest/collect.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_cluster.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/pyplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/colorbar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/collections.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/artist.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/cm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_cm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_cm_listed.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/hatch.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/lines.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/markers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/contour.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/font_manager.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/afm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_mathtext_data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/text.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/patches.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/textpath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_text_layout.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/dataclasses.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/dviread.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/mathtext.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_mathtext.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/blocking_input.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backend_bases.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backend_tools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_pylab_helpers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tight_bbox.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/widgets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backend_managers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/spines.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/image.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/style/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/style/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/figure.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/projections/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_subplots.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_axes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/category.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/legend.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/offsetbox.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/container.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/legend_handler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/mlab.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/quiver.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/stackplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/streamplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/table.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/triangulation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/tricontour.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/tritools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/trifinder.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/triinterpolate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/trirefine.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/tripcolor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/triplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axis.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_secondary_axes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/gridspec.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tight_layout.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_layoutgrid.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/projections/geo.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/projections/polar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/axes3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/art3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/proj3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/axis3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backends/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backends/backend_agg.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/util.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_data.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_CorrelationFunction.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_GaussianDensity.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_LocalDensity.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_RDF.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_SphereVoxelization.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/SphereVoxelization_fft.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_diffraction_DiffractionPattern.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/calculus/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/geometry/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/interpolate/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/mapping/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/random/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_diffraction_StaticStructureFactorDebye.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_doctests.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/doctest.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_AngularSeparation.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_BondOrder.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_LocalBondProjection.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_LocalDescriptors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/usertools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_fp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libmpf.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/backend.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libintmath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libmpc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libelefun.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libhyper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/gammazeta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libmpi.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/factorials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/hypergeometric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/expintegrals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/bessel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/orthogonal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/theta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/elliptic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/zeta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/rszeta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/zetazeros.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/qfunctions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/calculus.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/approximation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/differentiation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/extrapolation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/polynomials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/quadrature.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/inverselaplace.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/optimization.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/odes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/eigen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/eigen_symmetric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/calculus.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/linalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/identification.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/visualization.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/colorsys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/math2.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/function_docs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_mp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/rational.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_mp_python.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_iv.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/release.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/sympify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/compatibility.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/external/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/external/importtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/parameters.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/cache.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/assumptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/facts.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/logic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/singleton.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/kind.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/dispatcher.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/conflict.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/utils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/decorators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/_print_helpers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/expr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/evalf.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/iterables.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/enumerative.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/misc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/lambdify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/decorator.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/testing/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/testing/runtests.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/timeit.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/source.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/timeutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/mul.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/operations.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/numbers.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/fractions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/containers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/power.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/function.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/add.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/rules.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/symbol.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/logic/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/logic/boolalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/logic/inference.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/mod.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/exprtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/coreerrors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/relational.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/multidimensional.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/assume.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/ask.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/cnf.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/ask_generated.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/refine.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/relation/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/relation/binrel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polytools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyoptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyerrors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/constructor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/domain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/domainelement.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/orderings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/finitefield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/field.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/ring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/modularinteger.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/simpledomain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/groundtypes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonrational.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/pretty.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/conventions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/precedence.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/printer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/str.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/stringpict.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/pretty_symbology.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/alphabets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/latex.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/mathml.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/python.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/repr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pycode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/codeprinter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/glsl.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/rcode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/sets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/contains.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/fancysets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/conditionset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/ordinals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/powerset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/comparison.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/jscode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/julia.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/mathematica.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/octave.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/rust.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/gtk.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/mathml/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/pkgdata.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/preview.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/tree.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/tableform.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/dot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/maple.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/defaults.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/integerring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/characteristiczero.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/rationalfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/realfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/mpelements.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/complexfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonfinitefield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonintegerring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gmpyfinitefield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gmpyintegerring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonrationalfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gmpyrationalfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/algebraicfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyclasses.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/densebasic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/monomials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/densearith.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/densetools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/euclidtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/generate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/primetest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/factor_.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/digits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/ecm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/partitions_.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/residue_ntheory.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/multinomial.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/continued_fraction.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/egyptian_fraction.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/qs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/galoistools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyconfig.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/sqfreetools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/factortools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rootisolation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/polynomialring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/compositedomain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/fractionfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/expressiondomain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gaussiandomains.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/fglmtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/groebnertools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rationaltools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyfuncs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/specialpolys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/combinatorial/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/combinatorial/factorials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/combinatorial/numbers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/exponential.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/miscellaneous.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/integers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/trigonometric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/hyperbolic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/piecewise.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/memoization.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/complexes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/error_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/hyper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/gamma_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/zeta_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/tensor_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/singularity_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/delta_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/bsplines.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/bessel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/orthopolys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/polynomials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/spherical_harmonics.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/elliptic_integrals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/beta_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/mathieu_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/compatibility.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/heuristicgcd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/magic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/numberfields.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/ring_series.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rootoftools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyroots.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyquinticconst.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/simplify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/combsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/gammasimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/cse_opts.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/powsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/radsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/sqrtdenest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/trigsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/cse_main.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/rl.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/traverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/tools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/traverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/tools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/tree.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/fu.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/traversaltools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/epathtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/hyperexpand.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/order.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/limits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/ratsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/gruntz.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/series.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/approximants.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/residues.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/sequences.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/indexed.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/index_methods.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/dense_ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/mutable_ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/sparse_ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/arrayop.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/array_comprehension.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/fourier.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/series_class.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/formal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/discrete/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/discrete/transforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/discrete/convolutions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/limitseq.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/lambdarepr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/numpy.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/partfrac.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/utilities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/dense.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/determinant.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/domainmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/ddm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/dense.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/sdm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/reductions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/subspaces.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/eigen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/eigen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/homomorphisms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/modules.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/ideals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/extensions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/decompositions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/graph.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/inverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/sparse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/sparsetools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/immutable.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/slice.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matexpr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matmul.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/inverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matpow.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/special.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/transpose.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/permutation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matadd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/blockmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/trace.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/determinant.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/companion.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/funcmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/adjoint.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/hadamard.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/diagonal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/dotproduct.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/kronecker.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/sets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/fields.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/products.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/expr_with_intlimits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/expr_with_limits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/summations.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/euler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/singularities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/integrals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/manualintegrate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/trigonometry.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/meijerint.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/transforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/inequalities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/singularityfunctions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domainmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/polysys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/bivariate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/diophantine/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/diophantine/diophantine.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/solveset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/linsolve.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/recurr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/ode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/pde.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/deutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/subscheck.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/single.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/systems.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/decompogen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/finite_diff.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/gosper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/point.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/entity.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/intersection.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/union.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/line.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/plane.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/ellipse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/polygon.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/curve.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/parabola.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/parsing/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/parsing/sympy_parser.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/algebras/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/algebras/quaternion.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/plot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/experimental_lambdify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/textplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/plot_implicit.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/interval_arithmetic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/interval_membership.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/lib_interval.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/pygletplot/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/interactive/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/interactive/printing.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/interactive/session.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/dimensions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/unitsystem.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/prefixes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/quantities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/definitions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/definitions/unit_definitions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/definitions/dimension_definitions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/mks.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/length_weight_time.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/tensor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/permutations.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/prufer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/generators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/subsets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/graycode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/partitions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/polyhedron.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/perm_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/testing/randtest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/group_constructs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/named_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/pc_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/free_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/tensor_can.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/mksa.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/natural.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/si.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/wigner.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_MatchEnv.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_interface.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_NeighborList.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_NeighborQuery.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_PeriodicBuffer.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_Voronoi.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_managedarray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/unittest.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_msd_MSD.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Cubatic.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Hexatic.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Nematic.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_RotationalAutocorrelation.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_SolidLiquid.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Steinhardt.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Translational.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_parallel.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_pmft.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_util.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/integration/test_reader_integrations.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/validation/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/validation/test_Minkowski_Structure_Metrics.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/reader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/posfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/trajectory.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/deprecation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/__about__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/_structures.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/shapes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/errors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/hoomdxmlfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/dcdfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/pydcdreader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/gsdhoomdfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/gsd/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/gsd/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/pygsd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/gsdhoomd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/getarfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/ciffilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/writer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/posfilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/ciffilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/gsdhoomdfilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/gsd/hoomd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/getarfilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/samples.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/util.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/validation/test_Steinhardt_Average.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/compat.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/coverage/control.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/coverage/collector.py': falls outside the --source spec Source matching against trees Not tracing '/usr/lib/python3.9/threading.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/engine.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/os.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/posixpath.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/genericpath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/config/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_manager.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/inspect.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_hooks.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/enum.py': falls outside the --source spec Not tracing '': not a real file name Not tracing '/usr/lib/python3.9/functools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_callers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_result.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_path/local.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_error.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_path/common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_vendored_packages/apipkg/__init__.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/assertion/rewrite.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/store.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/typing.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/pathlib.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/pathlib.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/fnmatch.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_tracing.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_virtualenv.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_builtin.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/re.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/sre_compile.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/sre_parse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/capture.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/warnings.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/contextlib.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/warnings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/config/argparsing.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/argparse.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/gettext.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/_collections_abc.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/locale.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/terminal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/helpconfig.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_io/terminalwriter.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/shutil.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/types.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_argcomplete.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/plugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/setupplan.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/setuponly.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/mark/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/cacheprovider.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/python.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/main.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/nodes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/mark/structures.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/deprecated.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/_bootlocale.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/codecs.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/json/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/json/decoder.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/faulthandler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/stepwise.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/junitxml.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/tmpdir.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/monkeypatch.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/skipping.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/debugging.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/pdb.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/cmd.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/code.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/codeop.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/pastebin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/logging.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/logging/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/_weakrefset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/fixtures.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/compat.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_io/wcwidth.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/runner.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/platform.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/importlib/metadata.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/__init__.py': falls outside the --source spec Not tracing '': not a real file name Not tracing '/usr/lib/python3.9/email/parser.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/feedparser.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/errors.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/_policybase.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/header.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/quoprimime.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/base64mime.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/base64.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/charset.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/encoders.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/quopri.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/utils.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/_parseaddr.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/calendar.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/abc.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/message.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/uu.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/_encoded_words.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/email/iterators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/assertion/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/doctest.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/shlex.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_code/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/py/_code/code.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/reports.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/importlib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_box_Box.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/distutils/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/distutils/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_api/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_api/deprecation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/cbook/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/gzip.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_globals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/__config__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_distributor_init.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/multiarray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/overrides.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/compat/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/compat/_inspect.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/compat/py3k.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/collections/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/textwrap.py': falls outside the --source spec Not tracing '<__array_function__ internals>': not a real file name Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/umath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/numerictypes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_string_helpers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_type_aliases.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_dtype.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/numeric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/shape_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/fromnumeric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_methods.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_ufunc_config.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/arrayprint.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_asarray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/defchararray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/records.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/memmap.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/function_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/machar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/getlimits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/einsumfunc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_add_newdocs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_add_newdocs_scalars.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_dtype_ctypes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/core/_internal.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/ctypes/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/ctypes/_endian.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/copyreg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/_pytesttester.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/mixins.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/scimath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/type_check.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/ufunclike.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/index_tricks.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/matrixlib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/matrixlib/defmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/linalg/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/linalg/linalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/twodim_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/stride_tricks.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/function_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/histograms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/nanfunctions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/shape_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/polynomial.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/utils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/arraysetops.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/npyio.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/format.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/_datasource.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/_iotools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/arrayterator.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/arraypad.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/lib/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/fft/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/fft/_pocketfft.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/fft/helper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/polynomial.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/polyutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/_polybase.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/chebyshev.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/legendre.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/hermite.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/hermite_e.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/polynomial/laguerre.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/random/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/random/_pickle.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/secrets.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/hmac.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/random.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ctypeslib.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ma/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ma/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/ma/extras.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/docstring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/rcsetup.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/animation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/Image.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageMode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/TiffTags.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/_binary.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/_util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_animation_data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/colors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/PngImagePlugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageChops.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImagePalette.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/GimpGradientFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/GimpPaletteFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageColor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/PaletteFile.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/ImageSequence.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/scale.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/ticker.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/transforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/path.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/bezier.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/weakref.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_color_data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/fontconfig_pattern.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pyparsing.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/traceback.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/linecache.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/tokenize.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/copy.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_enums.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/cycler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/six.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/_version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/dates.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/rrule.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/_common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/relativedelta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/parser/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/parser/_parser.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/tz.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/_common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/_factories.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/tz/win.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/dateutil/parser/isoparser.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/units.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/result.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/util.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/case.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/difflib.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/suite.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/loader.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/main.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/runner.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/unittest/signals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/utils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/decorators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/numpy/testing/_private/nosetester.py': falls outside the --source spec Tracing '/root/ci/freud/freud/__init__.py' Not tracing 'util.pyx': falls outside the --source spec Not tracing '__init__.pxd': falls outside the --source spec Not tracing 'box.pyx': falls outside the --source spec Not tracing 'stringsource': falls outside the --source spec Not tracing 'locality.pyx': falls outside the --source spec Tracing '/root/ci/freud/freud/errors.py' Tracing '/root/ci/freud/freud/util.pyx': will be traced by Not tracing 'cluster.pyx': falls outside the --source spec Tracing '/root/ci/freud/freud/data.py' Not tracing 'density.pyx': falls outside the --source spec Not tracing 'diffraction.pyx': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/calculus/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/geometry/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/interpolate/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/mapping/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/rowan/random/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/_testutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/deprecation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/__config__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_distributor_init.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/_pep440.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/_ccallback.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/filters.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/_ni_support.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/_ni_docstrings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/doccer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/fourier.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/interpolation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/sf_error.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/_basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/orthogonal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/misc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/blas.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/lapack.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/_util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/flinalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/decomp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/decomp_svd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/decomp_lu.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_decomp_ldl.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/decomp_cholesky.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/decomp_qr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_decomp_qz.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/decomp_schur.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_decomp_polar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/matfuncs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/special_matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_expm_frechet.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_matfuncs_sqrtm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_procrustes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_sketches.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/sputils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/csr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/compressed.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/dia.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/_index.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/csc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/lil.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/dok.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/coo.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/bsr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/construct.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/extract.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/_matrix_io.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/csgraph/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/csgraph/_laplacian.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/sparse/csgraph/_validation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/linalg/_decomp_cossin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/_logsumexp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/spfun_stats.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/_ellip_harm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/_lambertw.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/special/_spherical_bessel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/measurements.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/ndimage/morphology.py': falls outside the --source spec Not tracing 'environment.pyx': falls outside the --source spec Not tracing 'interface.pyx': falls outside the --source spec Not tracing 'msd.pyx': falls outside the --source spec Not tracing 'parallel.pyx': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fftpack/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fftpack/basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/uarray.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/_uarray/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/_lib/_uarray/_backend.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_realtransforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_fftlog.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_helper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_pocketfft/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_pocketfft/basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_pocketfft/helper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_pocketfft/realtransforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fft/_backend.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fftpack/helper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fftpack/pseudo_diffs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/scipy/fftpack/realtransforms.py': falls outside the --source spec Not tracing 'order.pyx': falls outside the --source spec Not tracing 'pmft.pyx': falls outside the --source spec Tracing '/root/ci/freud/freud/parallel.pyx': will be traced by Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/unittest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_code/code.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/_code/source.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/ast.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_cluster.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/pyplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/colorbar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/collections.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/artist.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/cm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_cm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_cm_listed.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/hatch.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/lines.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/markers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/contour.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/font_manager.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/afm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_mathtext_data.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/text.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/patches.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/textpath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_text_layout.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/dataclasses.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/dviread.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/mathtext.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_mathtext.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/blocking_input.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backend_bases.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backend_tools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_pylab_helpers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tight_bbox.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/widgets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backend_managers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/spines.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/image.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/style/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/style/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/figure.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/projections/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_subplots.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_axes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/category.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/legend.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/offsetbox.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/container.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/legend_handler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/mlab.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/quiver.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/stackplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/streamplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/table.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/triangulation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/tricontour.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/tritools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/trifinder.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/triinterpolate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/trirefine.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/tripcolor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tri/triplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axis.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/axes/_secondary_axes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/gridspec.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/tight_layout.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/_layoutgrid.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/projections/geo.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/projections/polar.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/axes3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/art3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/proj3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/mplot3d/axis3d.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backends/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/matplotlib/backends/backend_agg.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/util.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_managedarray.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_data.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_CorrelationFunction.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/attr/validators.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_GaussianDensity.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_LocalDensity.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_RDF.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_density_SphereVoxelization.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/SphereVoxelization_fft.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_diffraction_DiffractionPattern.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_diffraction_StaticStructureFactorDebye.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_doctests.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/doctest.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/encodings/__init__.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/encodings/unicode_escape.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_AngularSeparation.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_BondOrder.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_LocalBondProjection.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_LocalDescriptors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/usertools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_fp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_base.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libmpf.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/backend.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libintmath.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libmpc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libelefun.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libhyper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/gammazeta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/libmp/libmpi.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/factorials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/hypergeometric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/expintegrals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/bessel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/orthogonal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/theta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/elliptic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/zeta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/rszeta.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/zetazeros.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/functions/qfunctions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/calculus.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/approximation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/differentiation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/extrapolation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/polynomials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/quadrature.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/inverselaplace.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/optimization.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/calculus/odes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/eigen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/eigen_symmetric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/calculus.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/matrices/linalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/identification.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/visualization.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/colorsys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/math2.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/function_docs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_mp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/rational.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_mp_python.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpmath/ctx_iv.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/release.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/sympify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/compatibility.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/external/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/external/importtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/parameters.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/cache.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/basic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/assumptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/facts.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/logic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/singleton.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/kind.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/dispatcher.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/conflict.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/multipledispatch/utils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/decorators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/_print_helpers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/expr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/evalf.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/iterables.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/enumerative.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/misc.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/lambdify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/decorator.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/testing/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/testing/runtests.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/timeit.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/source.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/timeutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/mul.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/operations.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/numbers.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/fractions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/containers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/power.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/function.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/add.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/rules.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/symbol.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/logic/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/logic/boolalg.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/logic/inference.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/mod.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/exprtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/coreerrors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/relational.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/multidimensional.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/assume.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/ask.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/cnf.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/ask_generated.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/refine.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/relation/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/assumptions/relation/binrel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polytools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyoptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyerrors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/constructor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/domain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/domainelement.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/orderings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/finitefield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/field.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/ring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/modularinteger.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/simpledomain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/groundtypes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonrational.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/pretty.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/conventions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/precedence.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/printer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/str.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/stringpict.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pretty/pretty_symbology.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/core/alphabets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/latex.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/mathml.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/python.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/repr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/pycode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/codeprinter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/glsl.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/rcode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/sets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/contains.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/fancysets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/conditionset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/ordinals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/powerset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/comparison.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/jscode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/julia.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/mathematica.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/octave.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/rust.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/gtk.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/mathml/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/pkgdata.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/preview.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/tree.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/tableform.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/dot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/maple.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/defaults.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/integerring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/characteristiczero.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/rationalfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/realfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/mpelements.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/complexfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonfinitefield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonintegerring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gmpyfinitefield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gmpyintegerring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/pythonrationalfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gmpyrationalfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/algebraicfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyclasses.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/densebasic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/monomials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/densearith.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/densetools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/euclidtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/generate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/primetest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/factor_.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/digits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/ecm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/partitions_.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/residue_ntheory.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/multinomial.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/continued_fraction.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/egyptian_fraction.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/ntheory/qs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/galoistools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyconfig.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/sqfreetools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/factortools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rootisolation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/polynomialring.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/compositedomain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/fractionfield.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/expressiondomain.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domains/gaussiandomains.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/fglmtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/groebnertools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rationaltools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyfuncs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/specialpolys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/combinatorial/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/combinatorial/factorials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/combinatorial/numbers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/exponential.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/miscellaneous.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/integers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/trigonometric.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/hyperbolic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/piecewise.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/memoization.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/elementary/complexes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/error_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/hyper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/gamma_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/zeta_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/tensor_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/singularity_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/delta_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/bsplines.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/bessel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/orthopolys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/polynomials.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/spherical_harmonics.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/elliptic_integrals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/beta_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/functions/special/mathieu_functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rings.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/compatibility.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/heuristicgcd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/utilities/magic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/numberfields.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/ring_series.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/rootoftools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyroots.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/polyquinticconst.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/simplify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/combsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/gammasimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/cse_opts.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/powsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/radsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/sqrtdenest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/trigsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/cse_main.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/rl.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/traverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/tools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/traverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/core.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/branch/tools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/strategies/tree.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/fu.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/traversaltools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/epathtools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/hyperexpand.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/order.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/limits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/simplify/ratsimp.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/gruntz.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/series.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/approximants.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/residues.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/sequences.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/indexed.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/index_methods.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/functions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/dense_ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/mutable_ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/sparse_ndim_array.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/arrayop.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/array/array_comprehension.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/fourier.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/series_class.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/formal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/discrete/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/discrete/transforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/discrete/convolutions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/series/limitseq.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/lambdarepr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/printing/numpy.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/partfrac.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/common.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/utilities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/dense.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/determinant.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/domainmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/ddm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/dense.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/sdm.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/reductions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/subspaces.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/eigen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/eigen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/homomorphisms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/modules.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/ideals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/agca/extensions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/decompositions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/graph.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/inverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/sparse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/sparsetools.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/immutable.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/slice.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matexpr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matmul.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/inverse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matpow.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/special.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/transpose.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/permutation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/matadd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/blockmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/trace.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/determinant.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/companion.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/funcmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/adjoint.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/hadamard.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/diagonal.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/dotproduct.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/kronecker.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/matrices/expressions/sets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/fields.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/products.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/expr_with_intlimits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/expr_with_limits.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/summations.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/euler.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/singularities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/integrals.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/manualintegrate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/trigonometry.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/meijerint.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/transforms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/inequalities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/integrals/singularityfunctions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/solvers.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/domainmatrix.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/polysys.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/bivariate.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/diophantine/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/diophantine/diophantine.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/solveset.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/polys/matrices/linsolve.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/recurr.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/ode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/pde.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/deutils.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/subscheck.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/single.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/ode/systems.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/solvers/decompogen.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/calculus/finite_diff.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/concrete/gosper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/point.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/exceptions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/entity.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/intersection.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/sets/handlers/union.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/line.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/plane.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/ellipse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/polygon.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/curve.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/geometry/parabola.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/parsing/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/parsing/sympy_parser.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/algebras/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/algebras/quaternion.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/plot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/experimental_lambdify.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/textplot.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/plot_implicit.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/interval_arithmetic.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/interval_membership.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/intervalmath/lib_interval.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/plotting/pygletplot/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/interactive/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/interactive/printing.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/interactive/session.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/dimensions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/unitsystem.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/prefixes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/quantities.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/definitions/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/definitions/unit_definitions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/definitions/dimension_definitions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/mks.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/length_weight_time.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/tensor/tensor.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/permutations.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/prufer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/generators.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/subsets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/graycode.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/partitions.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/polyhedron.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/perm_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/util.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/testing/randtest.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/group_constructs.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/named_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/pc_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/free_groups.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/combinatorics/tensor_can.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/mksa.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/natural.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/units/systems/si.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/matrices.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/sympy/physics/wigner.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_environment_MatchEnv.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_interface.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_NeighborList.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_NeighborQuery.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_PeriodicBuffer.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_locality_Voronoi.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_msd_MSD.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Cubatic.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Hexatic.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Nematic.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_RotationalAutocorrelation.py': falls outside the --source spec Tracing '/root/ci/freud/freud/order.pyx': will be traced by Not tracing 'util.pxd': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_SolidLiquid.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Steinhardt.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_order_Translational.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_parallel.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_pmft.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/test_util.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/integration/test_reader_integrations.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/zipfile.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/encodings/cp437.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/validation/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/validation/test_Minkowski_Structure_Metrics.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/reader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/posfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/trajectory.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/deprecation.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/__about__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/packaging/_structures.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/shapes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/errors.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/hoomdxmlfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/dcdfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/pydcdreader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/gsdhoomdfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/gsd/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/gsd/version.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/pygsd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/gsdhoomd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/getarfilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/ciffilereader.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/writer.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/posfilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/ciffilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/gsdhoomdfilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/gsd/hoomd.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/getarfilewriter.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/samples.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/garnett/util.py': falls outside the --source spec Not tracing '/root/ci/freud/tests/validation/test_Steinhardt_Average.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/unraisableexception.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/threadexception.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/nose.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/python_api.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/embed.py': falls outside the --source spec Tracing '/root/ci/freud/freud/box.pyx': will be traced by Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/recwarn.py': falls outside the --source spec Tracing '/root/ci/freud/freud/plot.py' Tracing '/root/ci/freud/freud/locality.pyx': will be traced by Tracing '/root/ci/freud/freud/cluster.pyx': will be traced by Not tracing 'locality.pxd': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/BmpImagePlugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/GifImagePlugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/JpegImagePlugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/TiffImagePlugin.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/JpegPresets.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/PIL/PpmImagePlugin.py': falls outside the --source spec Tracing '/root/ci/freud/freud/density.pyx': will be traced by Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/outcomes.py': falls outside the --source spec Not tracing '': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/axes_grid1/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/axes_grid1/axes_size.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/axes_grid1/axes_divider.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/axes_grid1/axes_grid.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/axes_grid1/mpl_axes.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/mpl_toolkits/axes_grid1/parasite_axes.py': falls outside the --source spec Not tracing '': falls outside the --source spec Tracing '/root/ci/freud/freud/diffraction.pyx': will be traced by Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/atom.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/data/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/data/vdw.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/atoms.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/units.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/cell.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/utils/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/formula.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/utils/arraywrapper.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/stress.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/geometry/__init__.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/geometry/cell.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/geometry/geometry.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/geometry/minkowski_reduction.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/geometry/distance.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/symbols.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/parallel.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/ase/utils/xrdebye.py': falls outside the --source spec Not tracing '/usr/lib/python3.9/bdb.py': falls outside the --source spec Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '/root/ci/freud/freud/environment.pyx': will be traced by Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '' Tracing '/root/ci/freud/freud/interface.pyx': will be traced by Tracing '/root/ci/freud/freud/msd.pyx': will be traced by Tracing '/root/ci/freud/freud/pmft.pyx': will be traced by Not tracing '/usr/lib/python3.9/urllib/parse.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/compat.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/coverage/control.py': falls outside the --source spec Not tracing '/root/ci/freud/venv/lib/python3.9/site-packages/coverage/collector.py': falls outside the --source spec

@P403n1x87
Copy link
Author

Is this still happening for you? The debug output seems mysterious until I realized the empty strings were because of HTML-tag-like things that Markdown is hiding.

It was still happening until a few weeks ago. I should have said that we have some Cythonised code, and that's where the .so files are coming from. The issue arises only for those tests that exercise mostly Cython call paths.

@nedbat
Copy link
Owner

nedbat commented Oct 17, 2021

@bdice Can you give me reproduction instructions? The circleci links want me to log in. What repo should I clone, what commit should I check out, and what dependencies should I install, and what commands should I run?

@nedbat
Copy link
Owner

nedbat commented Oct 17, 2021

@P403n1x87 "It was still happening until a few weeks ago" Do you know what changed a few weeks ago? If it's still happening somehow, can you give me reproduction steps?

@bdice
Copy link

bdice commented Oct 17, 2021

@nedbat I tried to create a reproduction locally, but I'm having some difficulty getting it to trigger locally with dependencies installed from conda. It occurred on CircleCI. I have included the tracebacks from CircleCI here. I'll try to see if I can reproduce the error in a local copy of the Docker container that our CI server uses.

CI logs for coverage==5.5 and pytest-cov==2.12.1: https://app.circleci.com/pipelines/github/glotzerlab/freud/3247/workflows/dbe8c8c9-ff33-408f-8d23-f90091dfda31/jobs/12802

============================= test session starts ==============================
platform linux -- Python 3.9.0, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 -- /root/ci/freud/venv/bin/python3.9
cachedir: .pytest_cache
rootdir: /root/ci/freud, configfile: setup.cfg
plugins: cov-2.12.1
collecting ... 
collecting 48 items                                                            
collecting 55 items                                                            
collecting 184 items                                                           
collecting 305 items                                                           
collected 403 items                                                            

tests/test_box_Box.py::TestBox::test_construct PASSED                    [  0%]
tests/test_box_Box.py::TestBox::test_get_length PASSED                   [  0%]
tests/test_box_Box.py::TestBox::test_set_length PASSED                   [  0%]
tests/test_box_Box.py::TestBox::test_get_tilt_factor PASSED              [  0%]
tests/test_box_Box.py::TestBox::test_set_tilt_factor PASSED              [  1%]
tests/test_box_Box.py::TestBox::test_box_volume PASSED                   [  1%]
tests/test_box_Box.py::TestBox::test_wrap_single_particle PASSED         [  1%]
tests/test_box_Box.py::TestBox::test_wrap_multiple_particles PASSED      [  1%]
tests/test_box_Box.py::TestBox::test_wrap_multiple_images PASSED         [  2%]
tests/test_box_Box.py::TestBox::test_wrap PASSED                         [  2%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_input_array PASSED [  2%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_new_array PASSED [  2%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_array_with_wrong_shape PASSED [  3%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_array_with_wrong_dtype PASSED [  3%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_array_with_wrong_order PASSED [  3%]
tests/test_box_Box.py::TestBox::test_unwrap PASSED                       [  3%]
tests/test_box_Box.py::TestBox::test_unwrap_with_out PASSED              [  4%]
tests/test_box_Box.py::TestBox::test_images_3d PASSED                    [  4%]
tests/test_box_Box.py::TestBox::test_images_2d PASSED                    [  4%]
tests/test_box_Box.py::TestBox::test_center_of_mass PASSED               [  4%]
tests/test_box_Box.py::TestBox::test_center_of_mass_weighted PASSED      [  5%]
tests/test_box_Box.py::TestBox::test_center PASSED                       [  5%]
tests/test_box_Box.py::TestBox::test_center_weighted PASSED              [  5%]
tests/test_box_Box.py::TestBox::test_absolute_coordinates PASSED         [  5%]
tests/test_box_Box.py::TestBox::test_absolute_coordinates_out PASSED     [  6%]
tests/test_box_Box.py::TestBox::test_fractional_coordinates PASSED       [  6%]
tests/test_box_Box.py::TestBox::test_fractional_coordinates_out PASSED   [  6%]
tests/test_box_Box.py::TestBox::test_vectors PASSED                      [  6%]
tests/test_box_Box.py::TestBox::test_periodic PASSED                     [  7%]
tests/test_box_Box.py::TestBox::test_equal PASSED                        [  7%]
tests/test_box_Box.py::TestBox::test_repr PASSED                         [  7%]
tests/test_box_Box.py::TestBox::test_str PASSED                          [  7%]
tests/test_box_Box.py::TestBox::test_to_dict PASSED                      [  8%]
tests/test_box_Box.py::TestBox::test_from_box PASSED                     [  8%]
tests/test_box_Box.py::TestBox::test_matrix PASSED                       [  8%]
tests/test_box_Box.py::TestBox::test_set_dimensions PASSED               [  8%]
tests/test_box_Box.py::TestBox::test_2_dimensional PASSED                [  9%]
tests/test_box_Box.py::TestBox::test_cube PASSED                         [  9%]
tests/test_box_Box.py::TestBox::test_square PASSED                       [  9%]
tests/test_box_Box.py::TestBox::test_multiply PASSED                     [  9%]
tests/test_box_Box.py::TestBox::test_plot_3d PASSED                      [ 10%]
tests/test_box_Box.py::TestBox::test_plot_2d PASSED                      [ 10%]
tests/test_box_Box.py::TestBox::test_compute_distances_2d PASSED         [ 10%]
tests/test_box_Box.py::TestBox::test_compute_distances_3d PASSED         [ 10%]
tests/test_box_Box.py::TestBox::test_compute_all_distances_2d PASSED     [ 11%]
tests/test_box_Box.py::TestBox::test_compute_all_distances_3d PASSED     [ 11%]
tests/test_box_Box.py::TestBox::test_contains_2d PASSED                  [ 11%]
tests/test_box_Box.py::TestBox::test_contains_3d PASSED                  [ 11%]
tests/test_cluster.py::TestCluster::test_constructor PASSED              [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_props PASSED            [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_props_advanced PASSED   [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_com_periodic PASSED     [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_keys PASSED             [ 13%]
tests/test_cluster.py::TestCluster::test_repr PASSED                     [ 13%]
tests/test_cluster.py::TestCluster::test_repr_png PASSED                 [ 13%]
tests/test_cluster.py::TestClusterManagedArray::test_saved_values PASSED [ 13%]
tests/test_data.py::TestUnitCell::test_square PASSED                     [ 14%]
tests/test_data.py::TestUnitCell::test_sc PASSED                         [ 14%]
tests/test_data.py::TestUnitCell::test_bcc PASSED                        [ 14%]
tests/test_data.py::TestUnitCell::test_fcc PASSED                        [ 14%]
tests/test_data.py::TestUnitCell::test_scale PASSED                      [ 15%]
tests/test_data.py::TestUnitCell::test_replicas PASSED                   [ 15%]
tests/test_data.py::TestUnitCell::test_invalid_replicas PASSED           [ 15%]
tests/test_data.py::TestUnitCell::test_noise PASSED                      [ 15%]
tests/test_data.py::TestUnitCell::test_seed PASSED                       [ 16%]
tests/test_data.py::TestRandomSystem::test_sizes_and_dimensions PASSED   [ 16%]
tests/test_data.py::TestRandomSystem::test_seed PASSED                   [ 16%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_generate_bins PASSED [ 16%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_attribute_access PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_random_points_complex PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_random_points_real PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_zero_points_complex PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_zero_points_real PASSED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_counts PASSED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_summation SKIPPED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_repr PASSED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_repr_png PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_query_nn_complex PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_query_nn_real PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_points_ne_query_points_complex PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_points_ne_query_points_real PASSED [ 20%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunctionManagedArray::test_saved_values PASSED [ 20%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_random_point_with_cell_list PASSED [ 20%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_change_box_dimension PASSED [ 20%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_2d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_3d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_values_2d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_values_3d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_repr PASSED [ 22%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_repr_png PASSED [ 22%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_attribute_access PASSED [ 22%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_density PASSED [ 22%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_ref_points PASSED [ 23%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_repr PASSED   [ 23%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_points_ne_query_points PASSED [ 23%]
tests/test_density_RDF.py::TestRDF::test_generateR PASSED                [ 23%]
tests/test_density_RDF.py::TestRDF::test_attribute_access PASSED         [ 24%]
tests/test_density_RDF.py::TestRDF::test_invalid_rdf PASSED              [ 24%]
tests/test_density_RDF.py::TestRDF::test_random_point PASSED             [ 24%]
tests/test_density_RDF.py::TestRDF::test_repr PASSED                     [ 24%]
tests/test_density_RDF.py::TestRDF::test_repr_png PASSED                 [ 25%]
tests/test_density_RDF.py::TestRDF::test_points_ne_query_points PASSED   [ 25%]
tests/test_density_RDF.py::TestRDF::test_empty_histogram PASSED          [ 25%]
tests/test_density_RDF.py::TestRDF::test_bin_precision PASSED            [ 25%]
tests/test_density_RDF.py::TestRDFManagedArray::test_saved_values PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_random_points_2d PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_random_points_3d PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_change_box_dimension PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_repr PASSED [ 27%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_repr_png PASSED [ 27%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_compute PASSED [ 27%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_reset[True] PASSED [ 27%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_reset[False] PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_attribute_access PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_attribute_shapes PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_center_unordered PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_center_ordered PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_repr PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_k_values_and_k_vectors PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_cubic_system PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_cubic_system_parameterized PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_compute PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_debye_validation PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_debye_ase PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_partial_structure_factor_arguments PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_partial_structure_factor_symmetry PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_partial_structure_factor_sum_normalization PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_large_k_partial_cross_term_goes_to_zero PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_large_k_partial_self_term_goes_to_fraction PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_large_k_scattering_goes_to_one PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_attribute_access PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_attribute_shapes PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_repr PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.center] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.center_of_mass] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.contains] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.to_dict] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.to_matrix] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.center (line 430)] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.center_of_mass (line 387)] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.contains (line 543)] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.to_dict (line 635)] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.to_matrix (line 657)] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.cluster.ClusterProperties.compute] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.cluster.__test__.ClusterProperties.compute (line 181)] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.density.LocalDensity.compute] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.density.__test__.LocalDensity.compute (line 492)] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.diffraction.StaticStructureFactorDebye.compute] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.diffraction.__test__.StaticStructureFactorDebye.compute (line 96)] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.environment.EnvironmentCluster.compute] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.environment.__test__.EnvironmentCluster.compute (line 527)] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.Hexatic.compute] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.Nematic.compute] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.Steinhardt.compute] PASSED [ 38%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.__test__.Hexatic.compute (line 305)] PASSED [ 38%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.__test__.Nematic.compute (line 181)] PASSED [ 38%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.__test__.Steinhardt.compute (line 696)] PASSED [ 38%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationGlobal::test_getN PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationGlobal::test_compute PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationGlobal::test_repr PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_getN PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_nlist PASSED [ 40%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_compute PASSED [ 40%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_repr PASSED [ 40%]
tests/test_environment_BondOrder.py::TestBondOrder::test_bond_order PASSED [ 40%]
tests/test_environment_BondOrder.py::TestBondOrder::test_repr PASSED     [ 41%]
tests/test_environment_BondOrder.py::TestBondOrder::test_points_ne_query_points PASSED [ 41%]
tests/test_environment_BondOrder.py::TestBondOrderManagedArray::test_saved_values PASSED [ 41%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_nlist PASSED [ 41%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_attribute_access PASSED [ 42%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_compute PASSED [ 42%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_repr PASSED [ 42%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_shape PASSED [ 42%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_global PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_particle_local PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_unknown_modes PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_nlist PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_shape_twosets PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_repr PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_ql PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_ql_weighted PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_wl PASSED [ 45%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_ld PASSED [ 45%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_query_point_ne_points PASSED [ 45%]
tests/test_environment_MatchEnv.py::TestCluster::test_single_cluster PASSED [ 45%]
tests/test_environment_MatchEnv.py::TestCluster::test_multi_cluster PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_cluster_kNeighbor PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_cluster_hardr PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_cluster_registration PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_minimize_RMSD PASSED [ 47%]
tests/test_environment_MatchEnv.py::TestCluster::test_repr PASSED        [ 47%]
tests/test_environment_MatchEnv.py::TestCluster::test_repr_png PASSED    [ 47%]
tests/test_environment_MatchEnv.py::TestEnvironmentMotifMatch::test_square PASSED [ 47%]
tests/test_environment_MatchEnv.py::TestEnvironmentRMSDMinimizer::test_api PASSED [ 48%]
tests/test_interface.py::TestInterface::test_constructor PASSED          [ 48%]
tests/test_interface.py::TestInterface::test_take_one PASSED             [ 48%]
tests/test_interface.py::TestInterface::test_filter_r PASSED             [ 48%]
tests/test_interface.py::TestInterface::test_repr PASSED                 [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_writable PASSED [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter_r_invalid_arguments PASSED [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter_r_max PASSED [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter_r_max_min PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_find_first_index PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_segments PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_from_arrays PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_indexing_empty PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_indexing_arrays PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_nl_size PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_index_error PASSED [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_index_writable PASSED [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_copy PASSED  [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_ordering_default PASSED [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_ordering_distance PASSED [ 53%]
tests/test_locality_NeighborList.py::TestNeighborList::test_num_points PASSED [ 53%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_validate_points PASSED [ 53%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_ball PASSED [ 53%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_mode_inference PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_invalid PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_r_min PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_nearest PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_ball_to_nlist PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_to_nlist PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_reciprocal PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_reciprocal_twoset PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_exclude_ii PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_exhaustive_search PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_exhaustive_search_asymmetric PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_attributes PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_no_bonds PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_corner_2d PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_random_system_query PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_duplicate_cell_shells PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_duplicate_cell_shells2 PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_2d_box_3d_points PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_plot_3d PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_plot_2d PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_throws PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_chaining PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_r_guess_scale PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_validate_points PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_ball PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_mode_inference PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_invalid PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_r_min PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_nearest PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_ball_to_nlist PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_to_nlist PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_reciprocal PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_reciprocal_twoset PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_exclude_ii PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_exhaustive_search PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_exhaustive_search_asymmetric PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_attributes PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_no_bonds PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_corner_2d PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_random_system_query PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_duplicate_cell_shells PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_duplicate_cell_shells2 PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_2d_box_3d_points PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_plot_3d PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_plot_2d PASSED [ 65%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_chaining PASSED [ 65%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_default_cell_width PASSED [ 65%]
tests/test_locality_NeighborQuery.py::TestMultipleMethods::test_alternating_points PASSED [ 65%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_square PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_cube PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_fcc_unit_cell PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_triclinic PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_repr PASSED [ 66%]
tests/test_locality_Voronoi.py::TestVoronoi::test_random_2d PASSED       [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_random_3d PASSED       [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_tess_2d PASSED [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_tess_3d PASSED [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_neighbors_wrapped PASSED [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_weights_fcc PASSED [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_repr PASSED            [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_attributes PASSED      [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_repr_png PASSED        [ 69%]
tests/test_msd_MSD.py::TestMSD::test_attribute_access PASSED             [ 69%]
tests/test_msd_MSD.py::TestMSD::test_MSD PASSED                          [ 69%]
tests/test_msd_MSD.py::TestMSD::test_repr PASSED                         [ 69%]
tests/test_order_Cubatic.py::TestCubatic::test_ordered PASSED            [ 70%]
tests/test_order_Cubatic.py::TestCubatic::test_disordered PASSED         [ 70%]
tests/test_order_Cubatic.py::TestCubatic::test_valid_inputs PASSED       [ 70%]
tests/test_order_Cubatic.py::TestCubatic::test_repr PASSED               [ 70%]
tests/test_order_Hexatic.py::TestHexatic::test_getK PASSED               [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_getK_pass PASSED          [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_order_size PASSED         [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_compute_random PASSED     [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_compute PASSED            [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_weighted_random PASSED    [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_weighted_square PASSED    [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_weighted_hex PASSED       [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_normalization PASSED      [ 73%]
tests/test_order_Hexatic.py::TestHexatic::test_3d_box PASSED             [ 73%]
tests/test_order_Hexatic.py::TestHexatic::test_repr PASSED               [ 73%]
tests/test_order_Hexatic.py::TestHexatic::test_repr_png PASSED           [ 73%]
tests/test_order_Nematic.py::TestNematicOrder::test_perfect PASSED       [ 74%]
tests/test_order_Nematic.py::TestNematicOrder::test_imperfect PASSED     [ 74%]
tests/test_order_Nematic.py::TestNematicOrder::test_repr PASSED          [ 74%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_equality PASSED [ 74%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_attributes PASSED [ 75%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_data PASSED [ 75%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_repr PASSED [ 75%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_shape PASSED      [ 75%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_nlist PASSED      [ 76%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_identical_environments PASSED [ 76%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_attribute_access PASSED [ 76%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_repr PASSED       [ 76%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_shape PASSED        [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[3] PASSED      [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[4] PASSED      [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[5] PASSED      [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[6] PASSED      [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[7] PASSED      [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_l_axis_aligned PASSED [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_ql PASSED [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_ql_near PASSED [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_wl PASSED [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_wl_near PASSED [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_weighted PASSED     [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_attribute_access PASSED [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_compute_twice_norm PASSED [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_rotational_invariance PASSED [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_repr PASSED         [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_repr_png PASSED     [ 81%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_no_neighbors PASSED [ 81%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_multiple_l PASSED   [ 81%]
tests/test_order_Translational.py::TestTranslational::test_simple PASSED [ 81%]
tests/test_order_Translational.py::TestTranslational::test_repr PASSED   [ 82%]
tests/test_parallel.py::TestParallel::test_set PASSED                    [ 82%]
tests/test_parallel.py::TestParallel::test_NumThreads PASSED             [ 82%]
tests/test_pmft.py::TestPMFTR12::test_box PASSED                         [ 82%]
tests/test_pmft.py::TestPMFTR12::test_bins PASSED                        [ 83%]
tests/test_pmft.py::TestPMFTR12::test_attribute_access PASSED            [ 83%]
tests/test_pmft.py::TestPMFTR12::test_two_particles PASSED               [ 83%]
tests/test_pmft.py::TestPMFTR12::test_repr PASSED                        [ 83%]
tests/test_pmft.py::TestPMFTR12::test_pcf PASSED                         [ 84%]
tests/test_pmft.py::TestPMFTR12::test_2d_box_3d_points PASSED            [ 84%]
tests/test_pmft.py::TestPMFTR12::test_points_ne_query_points PASSED      [ 84%]
tests/test_pmft.py::TestPMFTXYT::test_box PASSED                         [ 84%]
tests/test_pmft.py::TestPMFTXYT::test_bins PASSED                        [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_attribute_access PASSED            [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_two_particles PASSED               [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_repr PASSED                        [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_pcf PASSED                         [ 86%]
tests/test_pmft.py::TestPMFTXYT::test_2d_box_3d_points PASSED            [ 86%]
tests/test_pmft.py::TestPMFTXYT::test_points_ne_query_points PASSED      [ 86%]
tests/test_pmft.py::TestPMFTXYT::test_nontrivial_orientations PASSED     [ 86%]
tests/test_pmft.py::TestPMFTXY::test_box PASSED                          [ 87%]
tests/test_pmft.py::TestPMFTXY::test_bins PASSED                         [ 87%]
tests/test_pmft.py::TestPMFTXY::test_attribute_access PASSED             [ 87%]
tests/test_pmft.py::TestPMFTXY::test_two_particles PASSED                [ 87%]
tests/test_pmft.py::TestPMFTXY::test_repr PASSED                         [ 88%]
tests/test_pmft.py::TestPMFTXY::test_pcf PASSED                          [ 88%]
tests/test_pmft.py::TestPMFTXY::test_2d_box_3d_points PASSED             [ 88%]
tests/test_pmft.py::TestPMFTXY::test_repr_png PASSED                     [ 88%]
tests/test_pmft.py::TestPMFTXY::test_points_ne_query_points PASSED       [ 89%]
tests/test_pmft.py::TestPMFTXY::test_query_args_nn PASSED                [ 89%]
tests/test_pmft.py::TestPMFTXY::test_orientation_with_query_points PASSED [ 89%]
tests/test_pmft.py::TestPMFTXY::test_orientation_with_fewer_query_points PASSED [ 89%]
tests/test_pmft.py::TestPMFTXYZ::test_box PASSED                         [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_bins PASSED                        [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_attribute_access PASSED            [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_repr PASSED                        [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_pcf PASSED                         [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_two_particles PASSED               [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_shift_two_particles_dead_pixel PASSED [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_query_args_nn PASSED               [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_orientation_with_query_points PASSED [ 92%]
tests/test_pmft.py::TestPMFTXYZ::test_orientation_with_fewer_query_points PASSED [ 92%]
tests/test_pmft.py::TestPMFTR12ManagedArray::test_saved_values PASSED    [ 92%]
tests/test_pmft.py::TestPMFTXYTManagedArray::test_saved_values PASSED    [ 92%]
tests/test_pmft.py::TestPMFTXYManagedArray::test_saved_values PASSED     [ 93%]
tests/test_pmft.py::TestPMFTXYZManagedArray::test_saved_values PASSED    [ 93%]
tests/test_pmft.py::TestCompare::test_XY_XYZ PASSED                      [ 93%]
tests/test_pmft.py::TestCompare::test_XY_XYT PASSED                      [ 93%]
tests/test_util.py::TestCommon::test_convert_array PASSED                [ 94%]
tests/test_util.py::TestCommon::test_convert_matrix_box PASSED           [ 94%]
tests/test_util.py::TestCommon::test_convert_tuple_box PASSED            [ 94%]
tests/test_util.py::TestCommon::test_convert_dict_box PASSED             [ 94%]
tests/test_util.py::TestCommon::test_convert_array_len_2_box PASSED      [ 95%]
tests/test_util.py::TestCommon::test_convert_array_len_3_box PASSED      [ 95%]
tests/test_util.py::TestCommon::test_convert_array_len_6_box PASSED      [ 95%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_mdanalysis_gsd SKIPPED [ 95%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_mdanalysis_dcd SKIPPED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_gsd_gsd PASSED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_garnett_gsd PASSED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_garnett_dcd PASSED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_ovito_gsd SKIPPED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[fcc] PASSED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[bcc] PASSED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[hcp] PASSED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[sc] PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_gc_radius PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_gc_radius_ave PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_rvd_msm PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_rvd_msm_ave PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[q-False-False] PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[w-False-True] PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[avq-True-False] PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[avw-True-True] PASSED [100%]
INTERNALERROR> Traceback (most recent call last):
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 330, in find_cookie
INTERNALERROR>     line_string = line.decode('utf-8')
INTERNALERROR> UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc5 in position 25: invalid continuation byte
INTERNALERROR> 
INTERNALERROR> During handling of the above exception, another exception occurred:
INTERNALERROR> 
INTERNALERROR> Traceback (most recent call last):
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/main.py", line 269, in wrap_session
INTERNALERROR>     session.exitstatus = doit(config, session) or 0
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/main.py", line 323, in _main
INTERNALERROR>     config.hook.pytest_runtestloop(session=session)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_hooks.py", line 265, in __call__
INTERNALERROR>     return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_manager.py", line 80, in _hookexec
INTERNALERROR>     return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_callers.py", line 55, in _multicall
INTERNALERROR>     gen.send(outcome)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/plugin.py", line 271, in pytest_runtestloop
INTERNALERROR>     self.cov_controller.finish()
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/engine.py", line 44, in ensure_topdir_wrapper
INTERNALERROR>     return meth(self, *args, **kwargs)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/engine.py", line 196, in summary
INTERNALERROR>     total = self.cov.xml_report(ignore_errors=True, outfile=output)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/control.py", line 994, in xml_report
INTERNALERROR>     return render_report(self.config.xml_output, XmlReporter(self), morfs)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/report.py", line 35, in render_report
INTERNALERROR>     return reporter.report(morfs, outfile=outfile)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/xmlreport.py", line 76, in report
INTERNALERROR>     for fr, analysis in get_analysis_to_report(self.coverage, morfs):
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/report.py", line 70, in get_analysis_to_report
INTERNALERROR>     analysis = coverage._analyze(fr)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/control.py", line 808, in _analyze
INTERNALERROR>     return Analysis(data, it, self._file_mapper)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/results.py", line 20, in __init__
INTERNALERROR>     self.statements = self.file_reporter.lines()
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 191, in lines
INTERNALERROR>     return self.parser.statements
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 182, in parser
INTERNALERROR>     self._parser = PythonParser(
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/parser.py", line 44, in __init__
INTERNALERROR>     self.text = get_python_source(self.filename)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 65, in get_python_source
INTERNALERROR>     source = source.decode(source_encoding(source), "replace")
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/phystokens.py", line 261, in _source_encoding_py3
INTERNALERROR>     return tokenize.detect_encoding(readline)[0]
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 371, in detect_encoding
INTERNALERROR>     encoding = find_cookie(first)
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 335, in find_cookie
INTERNALERROR>     raise SyntaxError(msg)
INTERNALERROR>   File "<string>", line None
INTERNALERROR> SyntaxError: invalid or missing encoding declaration

================== 399 passed, 4 skipped in 64.15s (0:01:04) ===================

Exited with code exit status 3

CI logs for coverage==6.0.2 and pytest-cov==3.0.0: https://app.circleci.com/pipelines/github/glotzerlab/freud/3248/workflows/13ccdc97-a04e-4c31-b765-db37561b7c01/jobs/12808

============================= test session starts ==============================
platform linux -- Python 3.9.0, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 -- /root/ci/freud/venv/bin/python3.9
cachedir: .pytest_cache
rootdir: /root/ci/freud, configfile: setup.cfg
plugins: cov-3.0.0
collecting ... 
collecting 48 items                                                            
collecting 81 items                                                            
collecting 184 items                                                           
collecting 305 items                                                           
collected 403 items                                                            

tests/test_box_Box.py::TestBox::test_construct PASSED                    [  0%]
tests/test_box_Box.py::TestBox::test_get_length PASSED                   [  0%]
tests/test_box_Box.py::TestBox::test_set_length PASSED                   [  0%]
tests/test_box_Box.py::TestBox::test_get_tilt_factor PASSED              [  0%]
tests/test_box_Box.py::TestBox::test_set_tilt_factor PASSED              [  1%]
tests/test_box_Box.py::TestBox::test_box_volume PASSED                   [  1%]
tests/test_box_Box.py::TestBox::test_wrap_single_particle PASSED         [  1%]
tests/test_box_Box.py::TestBox::test_wrap_multiple_particles PASSED      [  1%]
tests/test_box_Box.py::TestBox::test_wrap_multiple_images PASSED         [  2%]
tests/test_box_Box.py::TestBox::test_wrap PASSED                         [  2%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_input_array PASSED [  2%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_new_array PASSED [  2%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_array_with_wrong_shape PASSED [  3%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_array_with_wrong_dtype PASSED [  3%]
tests/test_box_Box.py::TestBox::test_wrap_out_provided_with_array_with_wrong_order PASSED [  3%]
tests/test_box_Box.py::TestBox::test_unwrap PASSED                       [  3%]
tests/test_box_Box.py::TestBox::test_unwrap_with_out PASSED              [  4%]
tests/test_box_Box.py::TestBox::test_images_3d PASSED                    [  4%]
tests/test_box_Box.py::TestBox::test_images_2d PASSED                    [  4%]
tests/test_box_Box.py::TestBox::test_center_of_mass PASSED               [  4%]
tests/test_box_Box.py::TestBox::test_center_of_mass_weighted PASSED      [  5%]
tests/test_box_Box.py::TestBox::test_center PASSED                       [  5%]
tests/test_box_Box.py::TestBox::test_center_weighted PASSED              [  5%]
tests/test_box_Box.py::TestBox::test_absolute_coordinates PASSED         [  5%]
tests/test_box_Box.py::TestBox::test_absolute_coordinates_out PASSED     [  6%]
tests/test_box_Box.py::TestBox::test_fractional_coordinates PASSED       [  6%]
tests/test_box_Box.py::TestBox::test_fractional_coordinates_out PASSED   [  6%]
tests/test_box_Box.py::TestBox::test_vectors PASSED                      [  6%]
tests/test_box_Box.py::TestBox::test_periodic PASSED                     [  7%]
tests/test_box_Box.py::TestBox::test_equal PASSED                        [  7%]
tests/test_box_Box.py::TestBox::test_repr PASSED                         [  7%]
tests/test_box_Box.py::TestBox::test_str PASSED                          [  7%]
tests/test_box_Box.py::TestBox::test_to_dict PASSED                      [  8%]
tests/test_box_Box.py::TestBox::test_from_box PASSED                     [  8%]
tests/test_box_Box.py::TestBox::test_matrix PASSED                       [  8%]
tests/test_box_Box.py::TestBox::test_set_dimensions PASSED               [  8%]
tests/test_box_Box.py::TestBox::test_2_dimensional PASSED                [  9%]
tests/test_box_Box.py::TestBox::test_cube PASSED                         [  9%]
tests/test_box_Box.py::TestBox::test_square PASSED                       [  9%]
tests/test_box_Box.py::TestBox::test_multiply PASSED                     [  9%]
tests/test_box_Box.py::TestBox::test_plot_3d PASSED                      [ 10%]
tests/test_box_Box.py::TestBox::test_plot_2d PASSED                      [ 10%]
tests/test_box_Box.py::TestBox::test_compute_distances_2d PASSED         [ 10%]
tests/test_box_Box.py::TestBox::test_compute_distances_3d PASSED         [ 10%]
tests/test_box_Box.py::TestBox::test_compute_all_distances_2d PASSED     [ 11%]
tests/test_box_Box.py::TestBox::test_compute_all_distances_3d PASSED     [ 11%]
tests/test_box_Box.py::TestBox::test_contains_2d PASSED                  [ 11%]
tests/test_box_Box.py::TestBox::test_contains_3d PASSED                  [ 11%]
tests/test_cluster.py::TestCluster::test_constructor PASSED              [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_props PASSED            [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_props_advanced PASSED   [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_com_periodic PASSED     [ 12%]
tests/test_cluster.py::TestCluster::test_cluster_keys PASSED             [ 13%]
tests/test_cluster.py::TestCluster::test_repr PASSED                     [ 13%]
tests/test_cluster.py::TestCluster::test_repr_png PASSED                 [ 13%]
tests/test_cluster.py::TestClusterManagedArray::test_saved_values PASSED [ 13%]
tests/test_data.py::TestUnitCell::test_square PASSED                     [ 14%]
tests/test_data.py::TestUnitCell::test_sc PASSED                         [ 14%]
tests/test_data.py::TestUnitCell::test_bcc PASSED                        [ 14%]
tests/test_data.py::TestUnitCell::test_fcc PASSED                        [ 14%]
tests/test_data.py::TestUnitCell::test_scale PASSED                      [ 15%]
tests/test_data.py::TestUnitCell::test_replicas PASSED                   [ 15%]
tests/test_data.py::TestUnitCell::test_invalid_replicas PASSED           [ 15%]
tests/test_data.py::TestUnitCell::test_noise PASSED                      [ 15%]
tests/test_data.py::TestUnitCell::test_seed PASSED                       [ 16%]
tests/test_data.py::TestRandomSystem::test_sizes_and_dimensions PASSED   [ 16%]
tests/test_data.py::TestRandomSystem::test_seed PASSED                   [ 16%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_generate_bins PASSED [ 16%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_attribute_access PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_random_points_complex PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_random_points_real PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_zero_points_complex PASSED [ 17%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_zero_points_real PASSED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_counts PASSED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_summation SKIPPED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_repr PASSED [ 18%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_repr_png PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_query_nn_complex PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_query_nn_real PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_points_ne_query_points_complex PASSED [ 19%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunction::test_points_ne_query_points_real PASSED [ 20%]
tests/test_density_CorrelationFunction.py::TestCorrelationFunctionManagedArray::test_saved_values PASSED [ 20%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_random_point_with_cell_list PASSED [ 20%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_change_box_dimension PASSED [ 20%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_2d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_3d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_values_2d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_sum_values_3d PASSED [ 21%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_repr PASSED [ 22%]
tests/test_density_GaussianDensity.py::TestGaussianDensity::test_repr_png PASSED [ 22%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_attribute_access PASSED [ 22%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_density PASSED [ 22%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_ref_points PASSED [ 23%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_repr PASSED   [ 23%]
tests/test_density_LocalDensity.py::TestLocalDensity::test_points_ne_query_points PASSED [ 23%]
tests/test_density_RDF.py::TestRDF::test_generateR PASSED                [ 23%]
tests/test_density_RDF.py::TestRDF::test_attribute_access PASSED         [ 24%]
tests/test_density_RDF.py::TestRDF::test_invalid_rdf PASSED              [ 24%]
tests/test_density_RDF.py::TestRDF::test_random_point PASSED             [ 24%]
tests/test_density_RDF.py::TestRDF::test_repr PASSED                     [ 24%]
tests/test_density_RDF.py::TestRDF::test_repr_png PASSED                 [ 25%]
tests/test_density_RDF.py::TestRDF::test_points_ne_query_points PASSED   [ 25%]
tests/test_density_RDF.py::TestRDF::test_empty_histogram PASSED          [ 25%]
tests/test_density_RDF.py::TestRDF::test_bin_precision PASSED            [ 25%]
tests/test_density_RDF.py::TestRDFManagedArray::test_saved_values PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_random_points_2d PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_random_points_3d PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_change_box_dimension PASSED [ 26%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_repr PASSED [ 27%]
tests/test_density_SphereVoxelization.py::TestSphereVoxelization::test_repr_png PASSED [ 27%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_compute PASSED [ 27%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_reset[True] PASSED [ 27%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_reset[False] PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_attribute_access PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_attribute_shapes PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_center_unordered PASSED [ 28%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_center_ordered PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_repr PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_k_values_and_k_vectors PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_cubic_system PASSED [ 29%]
tests/test_diffraction_DiffractionPattern.py::TestDiffractionPattern::test_cubic_system_parameterized PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_compute PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_debye_validation PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_debye_ase PASSED [ 30%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_partial_structure_factor_arguments PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_partial_structure_factor_symmetry PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_partial_structure_factor_sum_normalization PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_large_k_partial_cross_term_goes_to_zero PASSED [ 31%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_large_k_partial_self_term_goes_to_fraction PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_large_k_scattering_goes_to_one PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_attribute_access PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_attribute_shapes PASSED [ 32%]
tests/test_diffraction_StaticStructureFactorDebye.py::TestStaticStructureFactorDebye::test_repr PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.center] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.center_of_mass] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.contains] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.to_dict] PASSED [ 33%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.Box.to_matrix] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.center (line 430)] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.center_of_mass (line 387)] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.contains (line 543)] PASSED [ 34%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.to_dict (line 635)] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.box.__test__.Box.to_matrix (line 657)] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.cluster.ClusterProperties.compute] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.cluster.__test__.ClusterProperties.compute (line 181)] PASSED [ 35%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.density.LocalDensity.compute] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.density.__test__.LocalDensity.compute (line 492)] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.diffraction.StaticStructureFactorDebye.compute] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.diffraction.__test__.StaticStructureFactorDebye.compute (line 96)] PASSED [ 36%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.environment.EnvironmentCluster.compute] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.environment.__test__.EnvironmentCluster.compute (line 527)] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.Hexatic.compute] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.Nematic.compute] PASSED [ 37%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.Steinhardt.compute] PASSED [ 38%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.__test__.Hexatic.compute (line 305)] PASSED [ 38%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.__test__.Nematic.compute (line 181)] PASSED [ 38%]
tests/test_doctests.py::TestDoctests::test_docstring[freud.order.__test__.Steinhardt.compute (line 696)] PASSED [ 38%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationGlobal::test_getN PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationGlobal::test_compute PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationGlobal::test_repr PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_getN PASSED [ 39%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_nlist PASSED [ 40%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_compute PASSED [ 40%]
tests/test_environment_AngularSeparation.py::TestAngularSeparationNeighbor::test_repr PASSED [ 40%]
tests/test_environment_BondOrder.py::TestBondOrder::test_bond_order PASSED [ 40%]
tests/test_environment_BondOrder.py::TestBondOrder::test_repr PASSED     [ 41%]
tests/test_environment_BondOrder.py::TestBondOrder::test_points_ne_query_points PASSED [ 41%]
tests/test_environment_BondOrder.py::TestBondOrderManagedArray::test_saved_values PASSED [ 41%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_nlist PASSED [ 41%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_attribute_access PASSED [ 42%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_compute PASSED [ 42%]
tests/test_environment_LocalBondProjection.py::TestLocalBondProjection::test_repr PASSED [ 42%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_shape PASSED [ 42%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_global PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_particle_local PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_unknown_modes PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_nlist PASSED [ 43%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_shape_twosets PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_repr PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_ql PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_ql_weighted PASSED [ 44%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_wl PASSED [ 45%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_ld PASSED [ 45%]
tests/test_environment_LocalDescriptors.py::TestLocalDescriptors::test_query_point_ne_points PASSED [ 45%]
tests/test_environment_MatchEnv.py::TestCluster::test_single_cluster PASSED [ 45%]
tests/test_environment_MatchEnv.py::TestCluster::test_multi_cluster PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_cluster_kNeighbor PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_cluster_hardr PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_cluster_registration PASSED [ 46%]
tests/test_environment_MatchEnv.py::TestCluster::test_minimize_RMSD PASSED [ 47%]
tests/test_environment_MatchEnv.py::TestCluster::test_repr PASSED        [ 47%]
tests/test_environment_MatchEnv.py::TestCluster::test_repr_png PASSED    [ 47%]
tests/test_environment_MatchEnv.py::TestEnvironmentMotifMatch::test_square PASSED [ 47%]
tests/test_environment_MatchEnv.py::TestEnvironmentRMSDMinimizer::test_api PASSED [ 48%]
tests/test_interface.py::TestInterface::test_constructor PASSED          [ 48%]
tests/test_interface.py::TestInterface::test_take_one PASSED             [ 48%]
tests/test_interface.py::TestInterface::test_filter_r PASSED             [ 48%]
tests/test_interface.py::TestInterface::test_repr PASSED                 [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_writable PASSED [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter_r_invalid_arguments PASSED [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter_r_max PASSED [ 49%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter_r_max_min PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_filter PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_find_first_index PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_segments PASSED [ 50%]
tests/test_locality_NeighborList.py::TestNeighborList::test_from_arrays PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_indexing_empty PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_indexing_arrays PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_nl_size PASSED [ 51%]
tests/test_locality_NeighborList.py::TestNeighborList::test_index_error PASSED [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_index_writable PASSED [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_copy PASSED  [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_ordering_default PASSED [ 52%]
tests/test_locality_NeighborList.py::TestNeighborList::test_ordering_distance PASSED [ 53%]
tests/test_locality_NeighborList.py::TestNeighborList::test_num_points PASSED [ 53%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_validate_points PASSED [ 53%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_ball PASSED [ 53%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_mode_inference PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_invalid PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_r_min PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_nearest PASSED [ 54%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_ball_to_nlist PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_query_to_nlist PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_reciprocal PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_reciprocal_twoset PASSED [ 55%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_exclude_ii PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_exhaustive_search PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_exhaustive_search_asymmetric PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_attributes PASSED [ 56%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_no_bonds PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_corner_2d PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_random_system_query PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_duplicate_cell_shells PASSED [ 57%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_duplicate_cell_shells2 PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_2d_box_3d_points PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_plot_3d PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_plot_2d PASSED [ 58%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_throws PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_chaining PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryAABB::test_r_guess_scale PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_validate_points PASSED [ 59%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_ball PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_mode_inference PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_invalid PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_r_min PASSED [ 60%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_nearest PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_ball_to_nlist PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_query_to_nlist PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_reciprocal PASSED [ 61%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_reciprocal_twoset PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_exclude_ii PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_exhaustive_search PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_exhaustive_search_asymmetric PASSED [ 62%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_attributes PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_no_bonds PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_corner_2d PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_random_system_query PASSED [ 63%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_duplicate_cell_shells PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_duplicate_cell_shells2 PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_2d_box_3d_points PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_plot_3d PASSED [ 64%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_plot_2d PASSED [ 65%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_chaining PASSED [ 65%]
tests/test_locality_NeighborQuery.py::TestNeighborQueryLinkCell::test_default_cell_width PASSED [ 65%]
tests/test_locality_NeighborQuery.py::TestMultipleMethods::test_alternating_points PASSED [ 65%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_square PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_cube PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_fcc_unit_cell PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_triclinic PASSED [ 66%]
tests/test_locality_PeriodicBuffer.py::TestPeriodicBuffer::test_repr PASSED [ 66%]
tests/test_locality_Voronoi.py::TestVoronoi::test_random_2d PASSED       [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_random_3d PASSED       [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_tess_2d PASSED [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_tess_3d PASSED [ 67%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_neighbors_wrapped PASSED [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_voronoi_weights_fcc PASSED [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_repr PASSED            [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_attributes PASSED      [ 68%]
tests/test_locality_Voronoi.py::TestVoronoi::test_repr_png PASSED        [ 69%]
tests/test_msd_MSD.py::TestMSD::test_attribute_access PASSED             [ 69%]
tests/test_msd_MSD.py::TestMSD::test_MSD PASSED                          [ 69%]
tests/test_msd_MSD.py::TestMSD::test_repr PASSED                         [ 69%]
tests/test_order_Cubatic.py::TestCubatic::test_ordered PASSED            [ 70%]
tests/test_order_Cubatic.py::TestCubatic::test_disordered PASSED         [ 70%]
tests/test_order_Cubatic.py::TestCubatic::test_valid_inputs PASSED       [ 70%]
tests/test_order_Cubatic.py::TestCubatic::test_repr PASSED               [ 70%]
tests/test_order_Hexatic.py::TestHexatic::test_getK PASSED               [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_getK_pass PASSED          [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_order_size PASSED         [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_compute_random PASSED     [ 71%]
tests/test_order_Hexatic.py::TestHexatic::test_compute PASSED            [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_weighted_random PASSED    [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_weighted_square PASSED    [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_weighted_hex PASSED       [ 72%]
tests/test_order_Hexatic.py::TestHexatic::test_normalization PASSED      [ 73%]
tests/test_order_Hexatic.py::TestHexatic::test_3d_box PASSED             [ 73%]
tests/test_order_Hexatic.py::TestHexatic::test_repr PASSED               [ 73%]
tests/test_order_Hexatic.py::TestHexatic::test_repr_png PASSED           [ 73%]
tests/test_order_Nematic.py::TestNematicOrder::test_perfect PASSED       [ 74%]
tests/test_order_Nematic.py::TestNematicOrder::test_imperfect PASSED     [ 74%]
tests/test_order_Nematic.py::TestNematicOrder::test_repr PASSED          [ 74%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_equality PASSED [ 74%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_attributes PASSED [ 75%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_data PASSED [ 75%]
tests/test_order_RotationalAutocorrelation.py::TestRotationalAutocorrelation::test_repr PASSED [ 75%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_shape PASSED      [ 75%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_nlist PASSED      [ 76%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_identical_environments PASSED [ 76%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_attribute_access PASSED [ 76%]
tests/test_order_SolidLiquid.py::TestSolidLiquid::test_repr PASSED       [ 76%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_shape PASSED        [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[3] PASSED      [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[4] PASSED      [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[5] PASSED      [ 77%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[6] PASSED      [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_qlmi[7] PASSED      [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_l_axis_aligned PASSED [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_ql PASSED [ 78%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_ql_near PASSED [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_wl PASSED [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_identical_environments_wl_near PASSED [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_weighted PASSED     [ 79%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_attribute_access PASSED [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_compute_twice_norm PASSED [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_rotational_invariance PASSED [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_repr PASSED         [ 80%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_repr_png PASSED     [ 81%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_no_neighbors PASSED [ 81%]
tests/test_order_Steinhardt.py::TestSteinhardt::test_multiple_l PASSED   [ 81%]
tests/test_order_Translational.py::TestTranslational::test_simple PASSED [ 81%]
tests/test_order_Translational.py::TestTranslational::test_repr PASSED   [ 82%]
tests/test_parallel.py::TestParallel::test_set PASSED                    [ 82%]
tests/test_parallel.py::TestParallel::test_NumThreads PASSED             [ 82%]
tests/test_pmft.py::TestPMFTR12::test_box PASSED                         [ 82%]
tests/test_pmft.py::TestPMFTR12::test_bins PASSED                        [ 83%]
tests/test_pmft.py::TestPMFTR12::test_attribute_access PASSED            [ 83%]
tests/test_pmft.py::TestPMFTR12::test_two_particles PASSED               [ 83%]
tests/test_pmft.py::TestPMFTR12::test_repr PASSED                        [ 83%]
tests/test_pmft.py::TestPMFTR12::test_pcf PASSED                         [ 84%]
tests/test_pmft.py::TestPMFTR12::test_2d_box_3d_points PASSED            [ 84%]
tests/test_pmft.py::TestPMFTR12::test_points_ne_query_points PASSED      [ 84%]
tests/test_pmft.py::TestPMFTXYT::test_box PASSED                         [ 84%]
tests/test_pmft.py::TestPMFTXYT::test_bins PASSED                        [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_attribute_access PASSED            [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_two_particles PASSED               [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_repr PASSED                        [ 85%]
tests/test_pmft.py::TestPMFTXYT::test_pcf PASSED                         [ 86%]
tests/test_pmft.py::TestPMFTXYT::test_2d_box_3d_points PASSED            [ 86%]
tests/test_pmft.py::TestPMFTXYT::test_points_ne_query_points PASSED      [ 86%]
tests/test_pmft.py::TestPMFTXYT::test_nontrivial_orientations PASSED     [ 86%]
tests/test_pmft.py::TestPMFTXY::test_box PASSED                          [ 87%]
tests/test_pmft.py::TestPMFTXY::test_bins PASSED                         [ 87%]
tests/test_pmft.py::TestPMFTXY::test_attribute_access PASSED             [ 87%]
tests/test_pmft.py::TestPMFTXY::test_two_particles PASSED                [ 87%]
tests/test_pmft.py::TestPMFTXY::test_repr PASSED                         [ 88%]
tests/test_pmft.py::TestPMFTXY::test_pcf PASSED                          [ 88%]
tests/test_pmft.py::TestPMFTXY::test_2d_box_3d_points PASSED             [ 88%]
tests/test_pmft.py::TestPMFTXY::test_repr_png PASSED                     [ 88%]
tests/test_pmft.py::TestPMFTXY::test_points_ne_query_points PASSED       [ 89%]
tests/test_pmft.py::TestPMFTXY::test_query_args_nn PASSED                [ 89%]
tests/test_pmft.py::TestPMFTXY::test_orientation_with_query_points PASSED [ 89%]
tests/test_pmft.py::TestPMFTXY::test_orientation_with_fewer_query_points PASSED [ 89%]
tests/test_pmft.py::TestPMFTXYZ::test_box PASSED                         [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_bins PASSED                        [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_attribute_access PASSED            [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_repr PASSED                        [ 90%]
tests/test_pmft.py::TestPMFTXYZ::test_pcf PASSED                         [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_two_particles PASSED               [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_shift_two_particles_dead_pixel PASSED [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_query_args_nn PASSED               [ 91%]
tests/test_pmft.py::TestPMFTXYZ::test_orientation_with_query_points PASSED [ 92%]
tests/test_pmft.py::TestPMFTXYZ::test_orientation_with_fewer_query_points PASSED [ 92%]
tests/test_pmft.py::TestPMFTR12ManagedArray::test_saved_values PASSED    [ 92%]
tests/test_pmft.py::TestPMFTXYTManagedArray::test_saved_values PASSED    [ 92%]
tests/test_pmft.py::TestPMFTXYManagedArray::test_saved_values PASSED     [ 93%]
tests/test_pmft.py::TestPMFTXYZManagedArray::test_saved_values PASSED    [ 93%]
tests/test_pmft.py::TestCompare::test_XY_XYZ PASSED                      [ 93%]
tests/test_pmft.py::TestCompare::test_XY_XYT PASSED                      [ 93%]
tests/test_util.py::TestCommon::test_convert_array PASSED                [ 94%]
tests/test_util.py::TestCommon::test_convert_matrix_box PASSED           [ 94%]
tests/test_util.py::TestCommon::test_convert_tuple_box PASSED            [ 94%]
tests/test_util.py::TestCommon::test_convert_dict_box PASSED             [ 94%]
tests/test_util.py::TestCommon::test_convert_array_len_2_box PASSED      [ 95%]
tests/test_util.py::TestCommon::test_convert_array_len_3_box PASSED      [ 95%]
tests/test_util.py::TestCommon::test_convert_array_len_6_box PASSED      [ 95%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_mdanalysis_gsd SKIPPED [ 95%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_mdanalysis_dcd SKIPPED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_gsd_gsd PASSED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_garnett_gsd PASSED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_garnett_dcd PASSED [ 96%]
tests/integration/test_reader_integrations.py::TestReaderIntegrations::test_ovito_gsd SKIPPED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[fcc] PASSED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[bcc] PASSED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[hcp] PASSED [ 97%]
tests/validation/test_Minkowski_Structure_Metrics.py::TestMinkowski::test_minkowski_structure_metrics[sc] PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_gc_radius PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_gc_radius_ave PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_rvd_msm PASSED [ 98%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_rvd_msm_ave PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[q-False-False] PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[w-False-True] PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[avq-True-False] PASSED [ 99%]
tests/validation/test_Steinhardt_Average.py::TestSteinhardtReferenceValues::test_msm_calc[avw-True-True] PASSED [100%]
INTERNALERROR> Traceback (most recent call last):
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 330, in find_cookie
INTERNALERROR>     line_string = line.decode('utf-8')
INTERNALERROR> UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc5 in position 25: invalid continuation byte
INTERNALERROR> 
INTERNALERROR> During handling of the above exception, another exception occurred:
INTERNALERROR> 
INTERNALERROR> Traceback (most recent call last):
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/main.py", line 269, in wrap_session
INTERNALERROR>     session.exitstatus = doit(config, session) or 0
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/_pytest/main.py", line 323, in _main
INTERNALERROR>     config.hook.pytest_runtestloop(session=session)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_hooks.py", line 265, in __call__
INTERNALERROR>     return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_manager.py", line 80, in _hookexec
INTERNALERROR>     return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pluggy/_callers.py", line 55, in _multicall
INTERNALERROR>     gen.send(outcome)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/plugin.py", line 294, in pytest_runtestloop
INTERNALERROR>     self.cov_controller.finish()
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/engine.py", line 44, in ensure_topdir_wrapper
INTERNALERROR>     return meth(self, *args, **kwargs)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/pytest_cov/engine.py", line 196, in summary
INTERNALERROR>     total = self.cov.xml_report(ignore_errors=True, outfile=output)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/control.py", line 1009, in xml_report
INTERNALERROR>     return render_report(self.config.xml_output, XmlReporter(self), morfs)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/report.py", line 34, in render_report
INTERNALERROR>     return reporter.report(morfs, outfile=outfile)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/xmlreport.py", line 73, in report
INTERNALERROR>     for fr, analysis in get_analysis_to_report(self.coverage, morfs):
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/report.py", line 69, in get_analysis_to_report
INTERNALERROR>     analysis = coverage._analyze(fr)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/control.py", line 822, in _analyze
INTERNALERROR>     return Analysis(data, self.config.precision, it, self._file_mapper)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/results.py", line 20, in __init__
INTERNALERROR>     self.statements = self.file_reporter.lines()
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 191, in lines
INTERNALERROR>     return self.parser.statements
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 182, in parser
INTERNALERROR>     self._parser = PythonParser(
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/parser.py", line 42, in __init__
INTERNALERROR>     self.text = get_python_source(self.filename)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 66, in get_python_source
INTERNALERROR>     source = source.decode(source_encoding(source), "replace")
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/phystokens.py", line 195, in source_encoding
INTERNALERROR>     return tokenize.detect_encoding(readline)[0]
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 371, in detect_encoding
INTERNALERROR>     encoding = find_cookie(first)
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 335, in find_cookie
INTERNALERROR>     raise SyntaxError(msg)
INTERNALERROR>   File "<string>", line None
INTERNALERROR> SyntaxError: invalid or missing encoding declaration

================== 399 passed, 4 skipped in 62.00s (0:01:01) ===================

Exited with code exit status 3

@bdice
Copy link

bdice commented Oct 17, 2021

@nedbat I recreated the exact same environment in a local Docker container, to the best of my ability, but everything appears to work as desired. However, I was able to SSH into the CircleCI server and reproduce the error repeatedly. Is there a particular test you'd suggest for me to try on the CI server to attempt to further triage or resolve this issue? In the meantime I'll look into the source of coverage and PR #1164 to see if I can learn more.

@nedbat
Copy link
Owner

nedbat commented Oct 18, 2021

@bdice: two things to try: first, can you reproduce the problem without pytest-cov? coverage run and coverage xml are the two commands you'd need to use. Second, can you set COVERAGE_DEBUG=trace in the environment? That will produce some more diagnostic output. Is it possible to get the .coverage data from from the test run? Thanks!

@nedbat
Copy link
Owner

nedbat commented Oct 18, 2021

It does seem like Cython is involved in this problem. @P403n1x87 Do you use the Cython.Coverage coverage.py plugin?

@bdice
Copy link

bdice commented Oct 18, 2021

coverage run -m pytest does not show an error. python -m pytest --cov does show an error. However, I reported above that the coverage run -m pytest command did generate an error, so I'm unsure if I misread the output last time or if the error has gone away as mysteriously as it began. edit: I can generate the error with or without pytest-cov. I was incorrectly calling coverage run before and not passing in the setup.cfg configuration.

I have examined the traceback a little more. Let me break down the last few pieces:

INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 182, in parser
INTERNALERROR>     self._parser = PythonParser(
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/parser.py", line 42, in __init__
INTERNALERROR>     self.text = get_python_source(self.filename)
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/python.py", line 66, in get_python_source
INTERNALERROR>     source = source.decode(source_encoding(source), "replace")
INTERNALERROR>   File "/root/ci/freud/venv/lib/python3.9/site-packages/coverage/phystokens.py", line 195, in source_encoding
INTERNALERROR>     return tokenize.detect_encoding(readline)[0]
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 371, in detect_encoding
INTERNALERROR>     encoding = find_cookie(first)
INTERNALERROR>   File "/usr/lib/python3.9/tokenize.py", line 335, in find_cookie
INTERNALERROR>     raise SyntaxError(msg)
INTERNALERROR>   File "<string>", line None
INTERNALERROR> SyntaxError: invalid or missing encoding declaration

On coverage/parser.py", line 42, in __init__: self.text = get_python_source(self.filename), I see that self.filename is pointing to a Cython library, /root/ci/freud/freud/box.cpython-39-x86_64-linux-gnu.so.

I see it's passing the first "line" of this library file here: coverage/phystokens.py", line 195, in source_encoding: return tokenize.detect_encoding(readline)[0]. The tokenize library is then trying and failing to determine the encoding of the first "line" of the shared library (embedded below). This string has some bytes that aren't valid UTF-8, causing the failure.

b'\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00>\x00\x01\x00\x00\x00P\xc5\x00\x00\x00\x00\x00\x00@\x00\x00\x00\x00\x00\x00\x000\xe7\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x008\x00\x0b\x00@\x00 \x00\x1f\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \xa1\x00\x00\x00\x00\x00\x00 \xa1\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x00\x00\xb0\x00\x00\x00\x00\x00\x00\x1d\xd7\x07\x00\x00\x00\x00\x00\x1d\xd7\x07\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x90\x08\x00\x00\x00\x00\x00\x00\x90\x08\x00\x00\x00\x00\x00\x00\x90\x08\x00\x00\x00\x00\x00\xb9\xcd\x00\x00\x00\x00\x00\x00\xb9\xcd\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x06\x00\x00\x00\x88i\t\x00\x00\x00\x00\x00\x88y\t\x00\x00\x00\x00\x00\x88y\t\x00\x00\x00\x00\x00 \x8f\x00\x00\x00\x00\x00\x00\x90\xa5\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00pl\t\x00\x00\x00\x00\x00p|\t\x00\x00\x00\x00\x00p|\t\x00\x00\x00\x00\x00\x10\x02\x00\x00\x00\x00\x00\x00\x10\x02\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\xa8\x02\x00\x00\x00\x00\x00\x00\xa8\x02\x00\x00\x00\x00\x00\x00\xa8\x02\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\xc8\x02\x00\x00\x00\x00\x00\x00\xc8\x02\x00\x00\x00\x00\x00\x00\xc8\x02\x00\x00\x00\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00S\xe5td\x04\x00\x00\x00\xa8\x02\x00\x00\x00\x00\x00\x00\xa8\x02\x00\x00\x00\x00\x00\x00\xa8\x02\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00P\xe5td\x04\x00\x00\x00 \x02\t\x00\x00\x00\x00\x00 \x02\t\x00\x00\x00\x00\x00 \x02\t\x00\x00\x00\x00\x00d\t\x00\x00\x00\x00\x00\x00d\t\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00Q\xe5td\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00R\xe5td\x04\x00\x00\x00\x88i\t\x00\x00\x00\x00\x00\x88y\t\x00\x00\x00\x00\x00\x88y\t\x00\x00\x00\x00\x00x\x06\x00\x00\x00\x00\x00\x00x\x06\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x10\x00\x00\x00\x05\x00\x00\x00GNU\x00\x02\x00\x00\xc0\x04\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x14\x00\x00\x00\x03\x00\x00\x00GNU\x00\x0f\x93<\x18~r\xe7\xc7b_m\xfeB{\xfe.\xd03\xae\xea\x00\x00\x00\x00\x02\x00\x00\x00\xe7\x00\x00\x00\x01\x00\x00\x00\x06\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x02\xe7\x00\x00\x00\x00\x00\x00\x00K\xfen\xf7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xab\x02\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x0b\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x10\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00v \x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xeb\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xea\x05\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x02\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe4\x0b\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf7\x06\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00u\x08\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\n'

I went up a few frames in the backtrace and found the list of file_reporters in report.py contained my .so file:

[<CythonModuleReporter filename='/root/ci/freud/freud/density.pyx'>, <CythonModuleReporter filename='/root/ci/freud/freud/pmft.pyx'>, <CythonModuleReporter filename='/root/ci/freud/freud/parallel.pyx'>, <CythonModuleReporter filename='/root/ci/freud/freud/box.pyx'>, <PythonFileReporter '/root/ci/freud/freud/data.py'>, <CythonModuleReporter filename='/root/ci/freud/freud/locality.pyx'>, <PythonFileReporter '/root/ci/freud/freud/__init__.py'>, <PythonFileReporter '/root/ci/freud/freud/box.cpython-39-x86_64-linux-gnu.so'>, <CythonModuleReporter filename='/root/ci/freud/freud/order.pyx'>, <PythonFileReporter '/root/ci/freud/freud/plot.py'>, <PythonFileReporter '/root/ci/freud/freud/errors.py'>, <CythonModuleReporter filename='/root/ci/freud/freud/util.pyx'>]

I also see that coverage.config.plugins is set to ['Cython.Coverage'].

It seems that the solution to this might be to ensure that *.so and other binary files are not parsed for source coverage? At this point I'm still unsure if it's coverage or pytest-cov or the Cython plugin that need to be changed.

It's possible that this issue arises ONLY when the first "line" of the built *.so library contains an invalid byte for UTF-8... that could be why it's so hard to reproduce.

@bdice
Copy link

bdice commented Oct 18, 2021

this issue arises ONLY when the first "line" of the built *.so library contains an invalid byte for UTF-8... that could be why it's so hard to reproduce.

I did some more investigation and I'm almost certain this is why reproducing the issue is very difficult. It's dependent on so many factors that affect compilation and whether an invalid UTF-8 byte occurs before the first character interpreted as a line break.

@bdice
Copy link

bdice commented Oct 18, 2021

coverage.zip
Attached is the .coverage SQLite database showing this error. It embeds coverage information for the .so file. That file shows two matching records in the arc table, from line -1 to line 1 and from line 1 to line -1.

Also, I was able to make it fail with only coverage run -m pytest -k box and coverage xml. My previous issue with replicating the error was because I didn't correctly pass my setup.cfg file to coverage. I don't think this issue is caused by pytest-cov.

@P403n1x87
Copy link
Author

@nedbat these steps should do

git clone --depth=1 https://github.com/datadog/dd-trace-py
cd dd-trace-py
# Linux
sed -i "s/profiling.run pytest --no-cov/profiling.run pytest/g" tox.ini
# OSX
# sed -i "" "s/profiling.run pytest --no-cov/profiling.run pytest/g" tox.ini
pip install tox
tox -e py37-profile-minreqs-gevent

You can change py37 with any other Python version that is supported (3.5-3.10) if needed

@nedbat
Copy link
Owner

nedbat commented Oct 18, 2021

@P403n1x87 Thanks, this reproduces it. I'll see what I can figure out (I'm a Cython newb!)

@nedbat nedbat added this to the Next milestone Oct 18, 2021
@nedbat
Copy link
Owner

nedbat commented Oct 18, 2021

BTW, this is a faster command to reproduce it, since we don't need all of the tests in your impressively extensive test suite:

.tox/py37-profile-minreqs-gevent/bin/python -m tests.profiling.run pytest --capture=no --verbose --benchmark-disable -k q tests/profiling

@P403n1x87
Copy link
Author

Ah, sorry for that. I haven't tried with a small subset of the tests as we normally see the results from the CI report.

@nedbat
Copy link
Owner

nedbat commented Oct 19, 2021

I have a fix for this in commit afe6cf3.

The problem happened with Cython files containing other generated code (@P403n1x87 had attrs, @bdice had doctests).

Thanks for the bug! :)

@nedbat nedbat added the fixed label Oct 19, 2021
@nedbat nedbat closed this as completed Oct 19, 2021
@bdice
Copy link

bdice commented Oct 19, 2021

@nedbat Amazing! I really appreciate your insight and support on this, I wouldn’t have thought of that root cause. 😊

@nedbat
Copy link
Owner

nedbat commented Oct 30, 2021

This is now released as part of coverage 6.1.

netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this issue Aug 24, 2022
Version 6.4.4 — 2022-08-16
--------------------------

- Wheels are now provided for Python 3.11.


.. _changes_6-4-3:

Version 6.4.3 — 2022-08-06
--------------------------

- Fix a failure when combining data files if the file names contained
  glob-like patterns (`pull 1405`_).  Thanks, Michael Krebs and Benjamin
  Schubert.

- Fix a messaging failure when combining Windows data files on a different
  drive than the current directory. (`pull 1430`_, fixing `issue 1428`_).
  Thanks, Lorenzo Micò.

- Fix path calculations when running in the root directory, as you might do in
  a Docker container: `pull 1403`_, thanks Arthur Rio.

- Filtering in the HTML report wouldn't work when reloading the index page.
  This is now fixed (`pull 1413`_).  Thanks, Marc Legendre.

- Fix a problem with Cython code measurement (`pull 1347`_, fixing `issue
  972`_).  Thanks, Matus Valo.

.. _issue 972: nedbat/coveragepy#972
.. _pull 1347: nedbat/coveragepy#1347
.. _pull 1403: nedbat/coveragepy#1403
.. _pull 1405: nedbat/coveragepy#1405
.. _pull 1413: nedbat/coveragepy#1413
.. _issue 1428: nedbat/coveragepy#1428
.. _pull 1430: nedbat/coveragepy#1430


.. _changes_6-4-2:

Version 6.4.2 — 2022-07-12
--------------------------

- Updated for a small change in Python 3.11.0 beta 4: modules now start with a
  line with line number 0, which is ignored.  This line cannnot be executed, so
  coverage totals were thrown off.  This line is now ignored by coverage.py,
  but this also means that truly empty modules (like ``__init__.py``) have no
  lines in them, rather than one phantom line.  Fixes `issue 1419`_.

- Internal debugging data added to sys.modules is now an actual module, to
  avoid confusing code that examines everything in sys.modules.  Thanks,
  Yilei Yang (`pull 1399`_).

.. _pull 1399: nedbat/coveragepy#1399
.. _issue 1419: nedbat/coveragepy#1419


.. _changes_6-4-1:

Version 6.4.1 — 2022-06-02
--------------------------

- Greatly improved performance on PyPy, and other environments that need the
  pure Python trace function.  Thanks, Carl Friedrich Bolz-Tereick (`pull
  1381`_ and `pull 1388`_).  Slightly improved performance when using the C
  trace function, as most environments do.  Closes `issue 1339`_.

- The conditions for using tomllib from the standard library have been made
  more precise, so that 3.11 alphas will continue to work. Closes `issue
  1390`_.

.. _issue 1339: nedbat/coveragepy#1339
.. _pull 1381: nedbat/coveragepy#1381
.. _pull 1388: nedbat/coveragepy#1388
.. _issue 1390: nedbat/coveragepy#1390


.. _changes_64:

Version 6.4 — 2022-05-22
------------------------

- A new setting, :ref:`config_run_sigterm`, controls whether a SIGTERM signal
  handler is used.  In 6.3, the signal handler was always installed, to capture
  data at unusual process ends.  Unfortunately, this introduced other problems
  (see `issue 1310`_).  Now the signal handler is only used if you opt-in by
  setting ``[run] sigterm = true``.

- Small changes to the HTML report:

  - Added links to next and previous file, and more keyboard shortcuts: ``[``
    and ``]`` for next file and previous file; ``u`` for up to the index; and
    ``?`` to open/close the help panel.  Thanks, `J. M. F. Tsang
    <pull 1364_>`_.

  - The timestamp and version are displayed at the top of the report.  Thanks,
    `Ammar Askar <pull 1354_>`_. Closes `issue 1351`_.

- A new debug option ``debug=sqldata`` adds more detail to ``debug=sql``,
  logging all the data being written to the database.

- Previously, running ``coverage report`` (or any of the reporting commands) in
  an empty directory would create a .coverage data file.  Now they do not,
  fixing `issue 1328`_.

- On Python 3.11, the ``[toml]`` extra no longer installs tomli, instead using
  tomllib from the standard library.  Thanks `Shantanu <pull 1359_>`_.

- In-memory CoverageData objects now properly update(), closing `issue 1323`_.

.. _issue 1310: nedbat/coveragepy#1310
.. _issue 1323: nedbat/coveragepy#1323
.. _issue 1328: nedbat/coveragepy#1328
.. _issue 1351: nedbat/coveragepy#1351
.. _pull 1354: nedbat/coveragepy#1354
.. _pull 1359: nedbat/coveragepy#1359
.. _pull 1364: nedbat/coveragepy#1364


.. _changes_633:

Version 6.3.3 — 2022-05-12
--------------------------

- Fix: Coverage.py now builds successfully on CPython 3.11 (3.11.0b1) again.
  Closes `issue 1367`_.  Some results for generators may have changed.

.. _issue 1367: nedbat/coveragepy#1367


.. _changes_632:

Version 6.3.2 — 2022-02-20
--------------------------

- Fix: adapt to pypy3.9's decorator tracing behavior.  It now traces function
  decorators like CPython 3.8: both the @-line and the def-line are traced.
  Fixes `issue 1326`_.

- Debug: added ``pybehave`` to the list of :ref:`coverage debug <cmd_debug>`
  and :ref:`cmd_run_debug` options.

- Fix: show an intelligible error message if ``--concurrency=multiprocessing``
  is used without a configuration file.  Closes `issue 1320`_.

.. _issue 1320: nedbat/coveragepy#1320
.. _issue 1326: nedbat/coveragepy#1326


.. _changes_631:

Version 6.3.1 — 2022-02-01
--------------------------

- Fix: deadlocks could occur when terminating processes.  Some of these
  deadlocks (described in `issue 1310`_) are now fixed.

- Fix: a signal handler was being set from multiple threads, causing an error:
  "ValueError: signal only works in main thread".  This is now fixed, closing
  `issue 1312`_.

- Fix: ``--precision`` on the command-line was being ignored while considering
  ``--fail-under``.  This is now fixed, thanks to
  `Marcelo Trylesinski <pull 1317_>`_.

- Fix: releases no longer provide 3.11.0-alpha wheels. Coverage.py uses CPython
  internal fields which are moving during the alpha phase. Fixes `issue 1316`_.

.. _issue 1310: nedbat/coveragepy#1310
.. _issue 1312: nedbat/coveragepy#1312
.. _issue 1316: nedbat/coveragepy#1316
.. _pull 1317: nedbat/coveragepy#1317


.. _changes_63:

Version 6.3 — 2022-01-25
------------------------

- Feature: Added the ``lcov`` command to generate reports in LCOV format.
  Thanks, `Bradley Burns <pull 1289_>`_. Closes issues `587 <issue 587_>`_
  and `626 <issue 626_>`_.

- Feature: the coverage data file can now be specified on the command line with
  the ``--data-file`` option in any command that reads or writes data.  This is
  in addition to the existing ``COVERAGE_FILE`` environment variable.  Closes
  `issue 624`_. Thanks, `Nikita Bloshchanevich <pull 1304_>`_.

- Feature: coverage measurement data will now be written when a SIGTERM signal
  is received by the process.  This includes
  :meth:`Process.terminate <python:multiprocessing.Process.terminate>`,
  and other ways to terminate a process.  Currently this is only on Linux and
  Mac; Windows is not supported.  Fixes `issue 1307`_.

- Dropped support for Python 3.6, which reached end-of-life on 2021-12-23.

- Updated Python 3.11 support to 3.11.0a4, fixing `issue 1294`_.

- Fix: the coverage data file is now created in a more robust way, to avoid
  problems when multiple processes are trying to write data at once. Fixes
  issues `1303 <issue 1303_>`_ and `883 <issue 883_>`_.

- Fix: a .gitignore file will only be written into the HTML report output
  directory if the directory is empty.  This should prevent certain unfortunate
  accidents of writing the file where it is not wanted.

- Releases now have MacOS arm64 wheels for Apple Silicon, fixing `issue 1288`_.

.. _issue 587: nedbat/coveragepy#587
.. _issue 624: nedbat/coveragepy#624
.. _issue 626: nedbat/coveragepy#626
.. _issue 883: nedbat/coveragepy#883
.. _issue 1288: nedbat/coveragepy#1288
.. _issue 1294: nedbat/coveragepy#1294
.. _issue 1303: nedbat/coveragepy#1303
.. _issue 1307: nedbat/coveragepy#1307
.. _pull 1289: nedbat/coveragepy#1289
.. _pull 1304: nedbat/coveragepy#1304


.. _changes_62:

Version 6.2 — 2021-11-26
------------------------

- Feature: Now the ``--concurrency`` setting can now have a list of values, so
  that threads and another lightweight threading package can be measured
  together, such as ``--concurrency=gevent,thread``.  Closes `issue 1012`_ and
  `issue 1082`_.

- Fix: A module specified as the ``source`` setting is imported during startup,
  before the user program imports it.  This could cause problems if the rest of
  the program isn't ready yet.  For example, `issue 1203`_ describes a Django
  setting that is accessed before settings have been configured.  Now the early
  import is wrapped in a try/except so errors then don't stop execution.

- Fix: A colon in a decorator expression would cause an exclusion to end too
  early, preventing the exclusion of the decorated function. This is now fixed.

- Fix: The HTML report now will not overwrite a .gitignore file that already
  exists in the HTML output directory (follow-on for `issue 1244`_).

- API: The exceptions raised by Coverage.py have been specialized, to provide
  finer-grained catching of exceptions by third-party code.

- API: Using ``suffix=False`` when constructing a Coverage object with
  multiprocessing wouldn't suppress the data file suffix (`issue 989`_).  This
  is now fixed.

- Debug: The ``coverage debug data`` command will now sniff out combinable data
  files, and report on all of them.

- Debug: The ``coverage debug`` command used to accept a number of topics at a
  time, and show all of them, though this was never documented.  This no longer
  works, to allow for command-line options in the future.

.. _issue 989: nedbat/coveragepy#989
.. _issue 1012: nedbat/coveragepy#1012
.. _issue 1082: nedbat/coveragepy#1082
.. _issue 1203: nedbat/coveragepy#1203


.. _changes_612:

Version 6.1.2 — 2021-11-10
--------------------------

- Python 3.11 is supported (tested with 3.11.0a2).  One still-open issue has to
  do with `exits through with-statements <issue 1270_>`_.

- Fix: When remapping file paths through the ``[paths]`` setting while
  combining, the ``[run] relative_files`` setting was ignored, resulting in
  absolute paths for remapped file names (`issue 1147`_).  This is now fixed.

- Fix: Complex conditionals over excluded lines could have incorrectly reported
  a missing branch (`issue 1271`_). This is now fixed.

- Fix: More exceptions are now handled when trying to parse source files for
  reporting.  Problems that used to terminate coverage.py can now be handled
  with ``[report] ignore_errors``.  This helps with plugins failing to read
  files (`django_coverage_plugin issue 78`_).

- Fix: Removed another vestige of jQuery from the source tarball
  (`issue 840`_).

- Fix: Added a default value for a new-to-6.x argument of an internal class.
  This unsupported class is being used by coveralls (`issue 1273`_). Although
  I'd rather not "fix" unsupported interfaces, it's actually nicer with a
  default value.

.. _django_coverage_plugin issue 78: nedbat/django_coverage_plugin#78
.. _issue 1147: nedbat/coveragepy#1147
.. _issue 1270: nedbat/coveragepy#1270
.. _issue 1271: nedbat/coveragepy#1271
.. _issue 1273: nedbat/coveragepy#1273


.. _changes_611:

Version 6.1.1 — 2021-10-31
--------------------------

- Fix: The sticky header on the HTML report didn't work unless you had branch
  coverage enabled. This is now fixed: the sticky header works for everyone.
  (Do people still use coverage without branch measurement!? j/k)

- Fix: When using explicitly declared namespace packages, the "already imported
  a file that will be measured" warning would be issued (`issue 888`_).  This
  is now fixed.

.. _issue 888: nedbat/coveragepy#888


.. _changes_61:

Version 6.1 — 2021-10-30
------------------------

- Deprecated: The ``annotate`` command and the ``Coverage.annotate`` function
  will be removed in a future version, unless people let me know that they are
  using it.  Instead, the ``html`` command gives better-looking (and more
  accurate) output, and the ``report -m`` command will tell you line numbers of
  missing lines.  Please get in touch if you have a reason to use ``annotate``
  over those better options: [email protected].

- Feature: Coverage now sets an environment variable, ``COVERAGE_RUN`` when
  running your code with the ``coverage run`` command.  The value is not
  important, and may change in the future.  Closes `issue 553`_.

- Feature: The HTML report pages for Python source files now have a sticky
  header so the file name and controls are always visible.

- Feature: The ``xml`` and ``json`` commands now describe what they wrote
  where.

- Feature: The ``html``, ``combine``, ``xml``, and ``json`` commands all accept
  a ``-q/--quiet`` option to suppress the messages they write to stdout about
  what they are doing (`issue 1254`_).

- Feature: The ``html`` command writes a ``.gitignore`` file into the HTML
  output directory, to prevent the report from being committed to git.  If you
  want to commit it, you will need to delete that file.  Closes `issue 1244`_.

- Feature: Added support for PyPy 3.8.

- Fix: More generated code is now excluded from measurement.  Code such as
  `attrs`_ boilerplate, or doctest code, was being measured though the
  synthetic line numbers meant they were never reported.  Once Cython was
  involved though, the generated .so files were parsed as Python, raising
  syntax errors, as reported in `issue 1160`_.  This is now fixed.

- Fix: When sorting human-readable names, numeric components are sorted
  correctly: file10.py will appear after file9.py.  This applies to file names,
  module names, environment variables, and test contexts.

- Performance: Branch coverage measurement is faster, though you might only
  notice on code that is executed many times, such as long-running loops.

- Build: jQuery is no longer used or vendored (`issue 840`_ and `issue 1118`_).
  Huge thanks to Nils Kattenbeck (septatrix) for the conversion to vanilla
  JavaScript in `pull request 1248`_.

.. _issue 553: nedbat/coveragepy#553
.. _issue 840: nedbat/coveragepy#840
.. _issue 1118: nedbat/coveragepy#1118
.. _issue 1160: nedbat/coveragepy#1160
.. _issue 1244: nedbat/coveragepy#1244
.. _pull request 1248: nedbat/coveragepy#1248
.. _issue 1254: nedbat/coveragepy#1254
.. _attrs: https://www.attrs.org/


.. _changes_602:

Version 6.0.2 — 2021-10-11
--------------------------

- Namespace packages being measured weren't properly handled by the new code
  that ignores third-party packages. If the namespace package was installed, it
  was ignored as a third-party package.  That problem (`issue 1231`_) is now
  fixed.

- Packages named as "source packages" (with ``source``, or ``source_pkgs``, or
  pytest-cov's ``--cov``) might have been only partially measured.  Their
  top-level statements could be marked as unexecuted, because they were
  imported by coverage.py before measurement began (`issue 1232`_).  This is
  now fixed, but the package will be imported twice, once by coverage.py, then
  again by your test suite.  This could cause problems if importing the package
  has side effects.

- The :meth:`.CoverageData.contexts_by_lineno` method was documented to return
  a dict, but was returning a defaultdict.  Now it returns a plain dict.  It
  also no longer returns negative numbered keys.

.. _issue 1231: nedbat/coveragepy#1231
.. _issue 1232: nedbat/coveragepy#1232


.. _changes_601:

Version 6.0.1 — 2021-10-06
--------------------------

- In 6.0, the coverage.py exceptions moved from coverage.misc to
  coverage.exceptions. These exceptions are not part of the public supported
  API, CoverageException is. But a number of other third-party packages were
  importing the exceptions from coverage.misc, so they are now available from
  there again (`issue 1226`_).

- Changed an internal detail of how tomli is imported, so that tomli can use
  coverage.py for their own test suite (`issue 1228`_).

- Defend against an obscure possibility under code obfuscation, where a
  function can have an argument called "self", but no local named "self"
  (`pull request 1210`_).  Thanks, Ben Carlsson.

.. _pull request 1210: nedbat/coveragepy#1210
.. _issue 1226: nedbat/coveragepy#1226
.. _issue 1228: nedbat/coveragepy#1228


.. _changes_60:

Version 6.0 — 2021-10-03
------------------------

- The ``coverage html`` command now prints a message indicating where the HTML
  report was written.  Fixes `issue 1195`_.

- The ``coverage combine`` command now prints messages indicating each data
  file being combined.  Fixes `issue 1105`_.

- The HTML report now includes a sentence about skipped files due to
  ``skip_covered`` or ``skip_empty`` settings.  Fixes `issue 1163`_.

- Unrecognized options in the configuration file are no longer errors. They are
  now warnings, to ease the use of coverage across versions.  Fixes `issue
  1035`_.

- Fix handling of exceptions through context managers in Python 3.10. A missing
  exception is no longer considered a missing branch from the with statement.
  Fixes `issue 1205`_.

- Fix another rarer instance of "Error binding parameter 0 - probably
  unsupported type." (`issue 1010`_).

- Creating a directory for the coverage data file now is safer against
  conflicts when two coverage runs happen simultaneously (`pull 1220`_).
  Thanks, Clément Pit-Claudel.

.. _issue 1035: nedbat/coveragepy#1035
.. _issue 1105: nedbat/coveragepy#1105
.. _issue 1163: nedbat/coveragepy#1163
.. _issue 1195: nedbat/coveragepy#1195
.. _issue 1205: nedbat/coveragepy#1205
.. _pull 1220: nedbat/coveragepy#1220


.. _changes_60b1:

Version 6.0b1 — 2021-07-18
--------------------------

- Dropped support for Python 2.7, PyPy 2, and Python 3.5.

- Added support for the Python 3.10 ``match/case`` syntax.

- Data collection is now thread-safe.  There may have been rare instances of
  exceptions raised in multi-threaded programs.

- Plugins (like the `Django coverage plugin`_) were generating "Already
  imported a file that will be measured" warnings about Django itself.  These
  have been fixed, closing `issue 1150`_.

- Warnings generated by coverage.py are now real Python warnings.

- Using ``--fail-under=100`` with coverage near 100% could result in the
  self-contradictory message :code:`total of 100 is less than fail-under=100`.
  This bug (`issue 1168`_) is now fixed.

- The ``COVERAGE_DEBUG_FILE`` environment variable now accepts ``stdout`` and
  ``stderr`` to write to those destinations.

- TOML parsing now uses the `tomli`_ library.

- Some minor changes to usually invisible details of the HTML report:

  - Use a modern hash algorithm when fingerprinting, for high-security
    environments (`issue 1189`_).  When generating the HTML report, we save the
    hash of the data, to avoid regenerating an unchanged HTML page. We used to
    use MD5 to generate the hash, and now use SHA-3-256.  This was never a
    security concern, but security scanners would notice the MD5 algorithm and
    raise a false alarm.

  - Change how report file names are generated, to avoid leading underscores
    (`issue 1167`_), to avoid rare file name collisions (`issue 584`_), and to
    avoid file names becoming too long (`issue 580`_).

.. _Django coverage plugin: https://pypi.org/project/django-coverage-plugin/
.. _issue 580: nedbat/coveragepy#580
.. _issue 584: nedbat/coveragepy#584
.. _issue 1150: nedbat/coveragepy#1150
.. _issue 1167: nedbat/coveragepy#1167
.. _issue 1168: nedbat/coveragepy#1168
.. _issue 1189: nedbat/coveragepy#1189
.. _tomli: https://pypi.org/project/tomli/


.. _changes_56b1:

Version 5.6b1 — 2021-04-13
--------------------------

Note: 5.6 final was never released. These changes are part of 6.0.

- Third-party packages are now ignored in coverage reporting.  This solves a
  few problems:

  - Coverage will no longer report about other people's code (`issue 876`_).
    This is true even when using ``--source=.`` with a venv in the current
    directory.

  - Coverage will no longer generate "Already imported a file that will be
    measured" warnings about coverage itself (`issue 905`_).

- The HTML report uses j/k to move up and down among the highlighted chunks of
  code.  They used to highlight the current chunk, but 5.0 broke that behavior.
  Now the highlighting is working again.

- The JSON report now includes ``percent_covered_display``, a string with the
  total percentage, rounded to the same number of decimal places as the other
  reports' totals.

.. _issue 876: nedbat/coveragepy#876
.. _issue 905: nedbat/coveragepy#905
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working fixed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants