Random Email Addresses in Job Logs when running tests?

I’ve recently added my project to Django with Postgres project to CircleCI and when it goes to the “run tests” stage, I see this in the black box (x’s added to potentially protect these people):

Creating test database for alias 'default'...
System check identified no issues (0 silenced).
.........................christopher86@xxxxxxxx.info
/home/circleci/repo/venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1447: RuntimeWarning: DateTimeField Inquiry.creation_date received a naive datetime (2018-07-29 07:18:54.203524) while time zone support is active.
  RuntimeWarning)
...laurenespinoza@xxxxxxxxxx.com
/home/circleci/repo/venv/lib/python3.6/site-packages/django/db/models/fields/__init__.py:1447: RuntimeWarning: DateTimeField Inquiry.creation_date received a naive datetime (2018-07-29 07:18:54.537157) while time zone support is active.
  RuntimeWarning)

Did I configure something wrong?

Turns out, we’re using a the Faker package to generate fake users. This is where these emails are coming from.

Heh! Pleased you found it. (It is probably best to delete the question, since it is unlikely to be of use to future users).

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.