diff --git a/.gitignore b/.gitignore index 41768084c..4e3d8072a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ *.db *~ .* +.tox/ +.venv/ /site/ /htmlcov/ diff --git a/tests/test_permissions.py b/tests/test_permissions.py index 96926ed70..decfacd41 100644 --- a/tests/test_permissions.py +++ b/tests/test_permissions.py @@ -554,4 +554,5 @@ class IsAuthenticatedOrOptionsOnlyAllowedTests(TestCase): credentials = basic_auth_header('username', 'password') self.request = factory.get('/1', format='json', HTTP_AUTHORIZATION=credentials) response = options_view(self.request, pk=1) - self.assertEqual(response.status_code, status.HTTP_200_OK) \ No newline at end of file + self.assertEqual(response.status_code, status.HTTP_200_OK) + \ No newline at end of file