Skip to content

Instantly share code, notes, and snippets.

@pradyunsg
Last active March 10, 2020 15:20
Show Gist options
  • Save pradyunsg/0d3cfefe1f184f7c7001e85ba5ecb8be to your computer and use it in GitHub Desktop.
Save pradyunsg/0d3cfefe1f184f7c7001e85ba5ecb8be to your computer and use it in GitHub Desktop.
Junction Test warnings, as on March 10, 2020
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for OneToOneField in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('user', models.OneToOneField(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:63: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:64: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferencesetting_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:65: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferencesetting_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferencevenue_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:28: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferencevenue_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:43: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_room_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:44: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_room_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:45: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('venue', models.ForeignKey(to='conferences.ConferenceVenue')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:55: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='conferences.ConferenceVenue', null=True),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0013_auto_20160131_1954.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(blank=True, null=True, to='conferences.ConferenceVenue'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conference_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:31: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conference_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:45: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:46: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferencemoderator_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:47: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('moderator', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:48: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferencemoderator_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:62: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:63: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferenceproposalreviewer_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:64: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferenceproposalreviewer_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:65: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('reviewer', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference_reviewer', models.ForeignKey(to='conferences.ConferenceProposalReviewer')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_emailreviewernotificationsetting_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:28: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_emailreviewernotificationsetting_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:29: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_section', models.ForeignKey(to='proposals.ProposalSection')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_type', models.ForeignKey(to='proposals.ProposalType')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0002_auto_20150109_1527.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(related_name='moderators', to='conferences.Conference'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0002_auto_20150109_1527.py:32: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(related_name='proposal_reviewers', to='conferences.Conference'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:24: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference_reviewer', models.ForeignKey(verbose_name='Conference Proposal Reviewers', to='conferences.ConferenceProposalReviewer')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposalsectionreviewer_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposalsectionreviewer_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_section', models.ForeignKey(verbose_name='Proposal Section', to='proposals.ProposalSection')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferenceproposalsection_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferenceproposalsection_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:40: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:41: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferenceproposaltype_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:42: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferenceproposaltype_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:65: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('author', models.ForeignKey(verbose_name='Primary Speaker', to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:66: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:81: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('commenter', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:82: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal', models.ForeignKey(to='proposals.Proposal')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:96: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_comment', models.ForeignKey(to='proposals.ProposalComment')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:97: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('voter', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:112: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposalsection_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:113: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposalsection_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:129: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposaltype_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:130: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposaltype_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:145: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal', models.ForeignKey(to='proposals.Proposal')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:146: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('voter', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:163: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Section', to='proposals.ProposalSection'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:169: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Type', to='proposals.ProposalType'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:179: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Type', to='proposals.ProposalType'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:189: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Section', to='proposals.ProposalSection'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0007_auto_20150525_2150.py:23: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal', models.ForeignKey(to='proposals.Proposal')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0007_auto_20150525_2150.py:24: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('voter', models.ForeignKey(to='proposals.ProposalSectionReviewer')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0009_auto_20150529_2216.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposalsectionreviewervotevalue_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0009_auto_20150529_2216.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposalsectionreviewervotevalue_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0009_auto_20150529_2216.py:36: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='proposals.ProposalSectionReviewerVoteValue'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0003_scheduleitemtype.py:40: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_scheduleitemtype_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0003_scheduleitemtype.py:41: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_scheduleitemtype_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:29: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_scheduleitem_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:31: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_scheduleitem_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:32: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('room', models.ForeignKey(to='conferences.Room', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:33: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('session', models.ForeignKey(to='proposals.Proposal', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0005_auto_20150917_2112.py:18: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(blank=True, to='proposals.Proposal', null=True),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:23: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_profile_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:24: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_profile_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/tickets/migrations/0001_initial.py:33: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_ticket_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/tickets/migrations/0001_initial.py:34: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_ticket_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('schedule_item_type', models.ForeignKey(to='schedule.ScheduleItemType')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:41: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('question', models.ForeignKey(related_name='allowed_values', to='feedback.ChoiceFeedbackQuestion')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:55: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('device', models.ForeignKey(blank=True, to='devices.Device', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:56: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('question', models.ForeignKey(to='feedback.ChoiceFeedbackQuestion')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:57: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('schedule_item', models.ForeignKey(to='schedule.ScheduleItem')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:71: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('device', models.ForeignKey(blank=True, to='devices.Device', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:86: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:87: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('schedule_item_type', models.ForeignKey(to='schedule.ScheduleItemType')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:97: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='feedback.TextFeedbackQuestion'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:103: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='schedule.ScheduleItem'),
======================================================== warnings summary ========================================================
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:63: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:64: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferencesetting_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:65: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferencesetting_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferencevenue_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:28: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferencevenue_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:43: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_room_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:44: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_room_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:45: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('venue', models.ForeignKey(to='conferences.ConferenceVenue')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0010_auto_20150713_2331.py:55: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='conferences.ConferenceVenue', null=True),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0013_auto_20160131_1954.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(blank=True, null=True, to='conferences.ConferenceVenue'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conference_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:31: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conference_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:45: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:46: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferencemoderator_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:47: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('moderator', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:48: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferencemoderator_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:62: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:63: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferenceproposalreviewer_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:64: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferenceproposalreviewer_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0001_initial.py:65: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('reviewer', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference_reviewer', models.ForeignKey(to='conferences.ConferenceProposalReviewer')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_emailreviewernotificationsetting_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:28: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_emailreviewernotificationsetting_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:29: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_section', models.ForeignKey(to='proposals.ProposalSection')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0005_emailreviewernotificationsetting.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_type', models.ForeignKey(to='proposals.ProposalType')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0002_auto_20150109_1527.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(related_name='moderators', to='conferences.Conference'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0002_auto_20150109_1527.py:32: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(related_name='proposal_reviewers', to='conferences.Conference'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:24: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference_reviewer', models.ForeignKey(verbose_name='Conference Proposal Reviewers', to='conferences.ConferenceProposalReviewer')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposalsectionreviewer_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposalsectionreviewer_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0004_proposalsectionreviewer.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_section', models.ForeignKey(verbose_name='Proposal Section', to='proposals.ProposalSection')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferenceproposalsection_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:27: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferenceproposalsection_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:40: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:41: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_conferenceproposaltype_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:42: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_conferenceproposaltype_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:65: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('author', models.ForeignKey(verbose_name='Primary Speaker', to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:66: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:81: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('commenter', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:82: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal', models.ForeignKey(to='proposals.Proposal')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:96: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal_comment', models.ForeignKey(to='proposals.ProposalComment')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:97: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('voter', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:112: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposalsection_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:113: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposalsection_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:129: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposaltype_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:130: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposaltype_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:145: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal', models.ForeignKey(to='proposals.Proposal')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:146: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('voter', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:163: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Section', to='proposals.ProposalSection'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:169: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Type', to='proposals.ProposalType'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:179: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Type', to='proposals.ProposalType'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0001_initial.py:189: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(verbose_name='Proposal Section', to='proposals.ProposalSection'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0007_auto_20150525_2150.py:23: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('proposal', models.ForeignKey(to='proposals.Proposal')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0007_auto_20150525_2150.py:24: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('voter', models.ForeignKey(to='proposals.ProposalSectionReviewer')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0009_auto_20150529_2216.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_proposalsectionreviewervotevalue_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0009_auto_20150529_2216.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_proposalsectionreviewervotevalue_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/proposals/migrations/0009_auto_20150529_2216.py:36: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='proposals.ProposalSectionReviewerVoteValue'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0003_scheduleitemtype.py:40: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_scheduleitemtype_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0003_scheduleitemtype.py:41: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_scheduleitemtype_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:29: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:30: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_scheduleitem_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:31: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_scheduleitem_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:32: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('room', models.ForeignKey(to='conferences.Room', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0001_initial.py:33: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('session', models.ForeignKey(to='proposals.Proposal', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/schedule/migrations/0005_auto_20150917_2112.py:18: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(blank=True, to='proposals.Proposal', null=True),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:23: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_profile_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:24: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_profile_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for OneToOneField in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('user', models.OneToOneField(to=settings.AUTH_USER_MODEL)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/tickets/migrations/0001_initial.py:33: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('created_by', models.ForeignKey(related_name='created_ticket_set', verbose_name='Created By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/tickets/migrations/0001_initial.py:34: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('modified_by', models.ForeignKey(related_name='updated_ticket_set', verbose_name='Modified By', blank=True, to=settings.AUTH_USER_MODEL, null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:26: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('schedule_item_type', models.ForeignKey(to='schedule.ScheduleItemType')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:41: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('question', models.ForeignKey(related_name='allowed_values', to='feedback.ChoiceFeedbackQuestion')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:55: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('device', models.ForeignKey(blank=True, to='devices.Device', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:56: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('question', models.ForeignKey(to='feedback.ChoiceFeedbackQuestion')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:57: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('schedule_item', models.ForeignKey(to='schedule.ScheduleItem')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:71: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('device', models.ForeignKey(blank=True, to='devices.Device', null=True)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:86: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('conference', models.ForeignKey(to='conferences.Conference')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:87: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
('schedule_item_type', models.ForeignKey(to='schedule.ScheduleItemType')),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:97: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='feedback.TextFeedbackQuestion'),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/feedback/migrations/0001_initial.py:103: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete
field=models.ForeignKey(to='schedule.ScheduleItem'),
tests/integrations/test_conferences.py::test_conferences
tests/integrations/test_device_api.py::TestDeviceListApiView::test_register
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions_without_conference
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_choice_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_text_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_proper_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_wrong_choice_value
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_without_device_token
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_resubmit_feedback
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_submit_feedback
tests/integrations/test_feedback_service.py::test_get_feedback_questions_without_conference
tests/integrations/test_feedback_service.py::test_get_feedback_questions_with_conference
tests/integrations/test_google_analytics.py::test_google_analytics_rendering
tests/integrations/test_permissions.py::test_public_urls
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_fail
tests/integrations/test_proposal_views.py::test_create_proposal_for_closed_conference
tests/integrations/test_proposal_views.py::test_create_proposal_for_open_conference_get
tests/integrations/test_proposal_views.py::test_create_proposal_with_missing_data
tests/integrations/test_proposal_views.py::test_create_proposal_with_all_data
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_post
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_get
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_by_different_author
tests/integrations/test_proposal_views.py::test_update_proposal_get
tests/integrations/test_proposal_views.py::test_update_proposal_post
tests/integrations/test_proposal_views.py::test_update_proposal_by_different_user
tests/integrations/test_proposal_views.py::test_update_proposal_with_invalid_data
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_detail_url_redirects
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_only_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_review_proposal_form
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_review_proposal_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_proposal_reviewer_vote_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_update_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote_after_create
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal_vote_with_invalid_data
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_votes_dashboard
tests/integrations/test_reviewer_views.py::test_public_comment
tests/unit/test_monkey.py::test_patched_url_reverse
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_absolute_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_delete_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_down_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_hashid]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_remove_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_review_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_slug]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_up_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_update_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[__str__]
tests/unit/proposals/test_services.py::test_markdown_to_html
tests/unit/tickets/management/commands/test_sync_data.py::test_suite_command
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/pytest_django/fixtures.py:397: PytestDeprecationWarning: The `funcargnames` attribute was an alias for `fixturenames`, since pytest 2.3 - use the newer attribute instead.
if "live_server" not in request.funcargnames:
tests/integrations/test_conferences.py::test_conferences
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions_without_conference
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_choice_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_text_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_proper_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_wrong_choice_value
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_without_device_token
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_resubmit_feedback
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_submit_feedback
tests/integrations/test_feedback_service.py::test_get_feedback_questions_without_conference
tests/integrations/test_feedback_service.py::test_get_feedback_questions_with_conference
tests/integrations/test_google_analytics.py::test_google_analytics_rendering
tests/integrations/test_permissions.py::test_public_urls
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_fail
tests/integrations/test_proposal_views.py::test_create_proposal_for_closed_conference
tests/integrations/test_proposal_views.py::test_create_proposal_for_open_conference_get
tests/integrations/test_proposal_views.py::test_create_proposal_with_missing_data
tests/integrations/test_proposal_views.py::test_create_proposal_with_all_data
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_post
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_get
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_by_different_author
tests/integrations/test_proposal_views.py::test_update_proposal_get
tests/integrations/test_proposal_views.py::test_update_proposal_post
tests/integrations/test_proposal_views.py::test_update_proposal_by_different_user
tests/integrations/test_proposal_views.py::test_update_proposal_with_invalid_data
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_detail_url_redirects
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_only_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_review_proposal_form
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_review_proposal_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_proposal_reviewer_vote_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_update_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote_after_create
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal_vote_with_invalid_data
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_votes_dashboard
tests/integrations/test_reviewer_views.py::test_public_comment
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_absolute_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_delete_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_down_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_hashid]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_remove_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_review_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_slug]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_up_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_update_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[__str__]
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/pytest_django/fixtures.py:174: PytestDeprecationWarning: The `funcargnames` attribute was an alias for `fixturenames`, since pytest 2.3 - use the newer attribute instead.
if "django_db_reset_sequences" in request.funcargnames:
tests/integrations/test_conferences.py::test_conferences
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions_without_conference
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_choice_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_text_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_proper_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_wrong_choice_value
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_without_device_token
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_resubmit_feedback
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_submit_feedback
tests/integrations/test_feedback_service.py::test_get_feedback_questions_without_conference
tests/integrations/test_feedback_service.py::test_get_feedback_questions_with_conference
tests/integrations/test_google_analytics.py::test_google_analytics_rendering
tests/integrations/test_permissions.py::test_public_urls
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_fail
tests/integrations/test_proposal_views.py::test_create_proposal_for_closed_conference
tests/integrations/test_proposal_views.py::test_create_proposal_for_open_conference_get
tests/integrations/test_proposal_views.py::test_create_proposal_with_missing_data
tests/integrations/test_proposal_views.py::test_create_proposal_with_all_data
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_post
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_get
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_by_different_author
tests/integrations/test_proposal_views.py::test_update_proposal_get
tests/integrations/test_proposal_views.py::test_update_proposal_post
tests/integrations/test_proposal_views.py::test_update_proposal_by_different_user
tests/integrations/test_proposal_views.py::test_update_proposal_with_invalid_data
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_detail_url_redirects
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_only_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_review_proposal_form
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_review_proposal_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_proposal_reviewer_vote_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_update_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote_after_create
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal_vote_with_invalid_data
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_votes_dashboard
tests/integrations/test_reviewer_views.py::test_public_comment
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_absolute_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_delete_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_down_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_hashid]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_remove_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_review_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_slug]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_up_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_update_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[__str__]
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/pytest_django/fixtures.py:177: PytestDeprecationWarning: The `funcargnames` attribute was an alias for `fixturenames`, since pytest 2.3 - use the newer attribute instead.
"transactional_db" in request.funcargnames
tests/integrations/test_conferences.py::test_conferences
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions
tests/integrations/test_feedback_api.py::TestFeedbackQuestionListApi::test_get_questions_without_conference
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_choice_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_missing_required_text_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_proper_data
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_with_wrong_choice_value
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_feedback_without_device_token
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_resubmit_feedback
tests/integrations/test_feedback_api.py::TestFeedbackListApi::test_submit_feedback
tests/integrations/test_feedback_service.py::test_get_feedback_questions_without_conference
tests/integrations/test_feedback_service.py::test_get_feedback_questions_with_conference
tests/integrations/test_google_analytics.py::test_google_analytics_rendering
tests/integrations/test_permissions.py::test_public_urls
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_fail
tests/integrations/test_proposal_views.py::test_create_proposal_for_closed_conference
tests/integrations/test_proposal_views.py::test_create_proposal_for_open_conference_get
tests/integrations/test_proposal_views.py::test_create_proposal_with_missing_data
tests/integrations/test_proposal_views.py::test_create_proposal_with_all_data
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_post
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_get
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_by_different_author
tests/integrations/test_proposal_views.py::test_update_proposal_get
tests/integrations/test_proposal_views.py::test_update_proposal_post
tests/integrations/test_proposal_views.py::test_update_proposal_by_different_user
tests/integrations/test_proposal_views.py::test_update_proposal_with_invalid_data
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_detail_url_redirects
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_only_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_review_proposal_form
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_review_proposal_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_proposal_reviewer_vote_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_update_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote_after_create
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal_vote_with_invalid_data
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_votes_dashboard
tests/integrations/test_reviewer_views.py::test_public_comment
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_absolute_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_delete_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_down_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_hashid]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_remove_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_review_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_slug]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_up_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_update_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[__str__]
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/pytest_django/fixtures.py:178: PytestDeprecationWarning: The `funcargnames` attribute was an alias for `fixturenames`, since pytest 2.3 - use the newer attribute instead.
or "live_server" in request.funcargnames
tests/integrations/test_conferences.py::test_conferences
tests/integrations/test_feedback_service.py::test_get_feedback_questions_without_conference
tests/integrations/test_feedback_service.py::test_get_feedback_questions_with_conference
tests/integrations/test_google_analytics.py::test_google_analytics_rendering
tests/integrations/test_permissions.py::test_public_urls
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_fail
tests/integrations/test_proposal_views.py::test_create_proposal_for_closed_conference
tests/integrations/test_proposal_views.py::test_create_proposal_for_open_conference_get
tests/integrations/test_proposal_views.py::test_create_proposal_with_missing_data
tests/integrations/test_proposal_views.py::test_create_proposal_with_all_data
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_post
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_get
tests/integrations/test_proposal_views.py::test_delete_existing_proposal_by_different_author
tests/integrations/test_proposal_views.py::test_update_proposal_get
tests/integrations/test_proposal_views.py::test_update_proposal_post
tests/integrations/test_proposal_views.py::test_update_proposal_by_different_user
tests/integrations/test_proposal_views.py::test_update_proposal_with_invalid_data
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_detail_url_redirects
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_reviewer_only_private_comment
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_review_proposal_form
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_review_proposal_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_proposal_reviewer_vote_by_non_reviewer
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_update_proposal_reviewer_vote
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_reviewer_vote_after_create
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_post_review_proposal_vote_with_invalid_data
tests/integrations/test_reviewer_views.py::TestReviewerViews::test_get_proposal_votes_dashboard
tests/integrations/test_reviewer_views.py::test_public_comment
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_absolute_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_delete_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_down_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_hashid]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_remove_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_review_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_slug]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_up_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_update_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[get_vote_url]
tests/unit/proposals/test_models.py::test_proposal_model_method_works[__str__]
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/pytest_django/fixtures.py:125: PytestDeprecationWarning: The `funcargnames` attribute was an alias for `fixturenames`, since pytest 2.3 - use the newer attribute instead.
if not transactional and "live_server" in request.funcargnames:
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/urls.py:47: RemovedInDjango20Warning: Passing a 3-tuple to django.conf.urls.include() is deprecated. Pass a 2-tuple containing the list of patterns and app_name, and provide the namespace argument to include() instead.
url(r'^nimda/', include(admin.site.urls)),
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/django_markdown/urls.py:8: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
'', url('preview/$', preview, name='django_markdown_preview'))
tests/integrations/test_conferences.py::test_conferences
/Users/pradyunsg/Projects/junction/junction/urls.py:91: RemovedInDjango20Warning: Specifying a namespace in django.conf.urls.include() without providing an app_name is deprecated. Set the app_name attribute in the included module, or pass a 2-tuple containing the list of patterns and app_name instead.
url(r'^profiles/', include('junction.profiles.urls', namespace="profiles")),
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_list_proposals_pass
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_filters
tests/integrations/test_proposal_views.py::test_proposal_filters
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/markdown/__init__.py:140: DeprecationWarning: "safe_mode" is deprecated in Python-Markdown. Use an HTML sanitizer (like Bleach https://bleach.readthedocs.io/) if you are parsing untrusted markdown text. See the 2.6 release notes for more info
DeprecationWarning)
tests/integrations/test_proposal_views.py::test_create_proposal_for_open_conference_get
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/bootstrap3/renderers.py:9: RemovedInDjango20Warning: django.forms.extras is deprecated. You can find SelectDateWidget in django.forms.widgets instead.
from django.forms.extras import SelectDateWidget
tests/unit/tickets/management/commands/test_sync_data.py::test_suite_command
/Users/pradyunsg/Projects/junction/.nox/test-3-5/lib/python3.5/site-packages/pytest_django/fixtures.py:199: PytestDeprecationWarning: The `funcargnames` attribute was an alias for `fixturenames`, since pytest 2.3 - use the newer attribute instead.
if "django_db_reset_sequences" in request.funcargnames:
-- Docs: https://docs.pytest.org/en/latest/warnings.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment