We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e5a66 commit 757b22fCopy full SHA for 757b22f
kpi/tests/api/v2/test_api_user_reports.py
@@ -1,5 +1,6 @@
1
from unittest.mock import patch
2
3
+import pytest
4
from django.conf import settings
5
from django.db import connection
6
from django.urls import reverse
@@ -14,6 +15,7 @@
14
15
from kpi.tests.base_test_case import BaseTestCase
16
17
18
+@pytest.mark.skipif(not settings.STRIPE_ENABLED, reason='Requires stripe functionality')
19
class UserReportsViewSetAPITestCase(BaseTestCase):
20
fixtures = ['test_data']
21
0 commit comments