From 9d9f459f3955e08189756cf368e96c31ccfb483d Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Sun, 6 Dec 2020 17:57:57 -0800 Subject: [PATCH] Nevermind; this test class covers more than just integration tests. --- django_mailbox/tests/base.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/django_mailbox/tests/base.py b/django_mailbox/tests/base.py index 2cea0dd..b1215c5 100644 --- a/django_mailbox/tests/base.py +++ b/django_mailbox/tests/base.py @@ -42,14 +42,6 @@ class EmailMessageTestCase(TestCase): self.mailbox = Mailbox.objects.create(from_email='from@example.com') - integration_testing_enabled = os.environ.get('INTEGRATION') - if not ( - integration_testing_enabled and int(integration_testing_enabled) - ): - self.skipTest( - "Integration tests skipped; to enable, set INTEGRATION=1" - ) - self.test_account = os.environ.get('EMAIL_ACCOUNT') self.test_password = os.environ.get('EMAIL_PASSWORD') self.test_smtp_server = os.environ.get('EMAIL_SMTP_SERVER')