File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11# test dependencies
22pytest >= 2.8.2
33responses == 0.9.0
4- python_dotenv >= 0.1.5 ;python_version != '3.2'
4+ python_dotenv >= 0.10.0 ;python_version < '3.7'
5+ python_dotenv == 0.9.0 ;python_version >= '3.7'
56pylint >= 1.4.4
67tox >= 2.9.1
78pytest-rerunfailures >= 3.1
Original file line number Diff line number Diff line change 66from unittest import TestCase
77
88
9- @pytest .mark .skip ('Skip Compare and comply tests' )
109class IntegrationTestCompareComplyV1 (TestCase ):
1110 compare_comply = None
1211
@@ -129,6 +128,7 @@ def test_feedback(self):
129128 assert add_feedback ['feedback_id' ] is not None
130129 feedback_id = add_feedback ['feedback_id' ]
131130
131+ self .compare_comply .set_default_headers ({'x-watson-metadata' : 'customer_id=sdk-test-customer-id' })
132132 get_feedback = self .compare_comply .get_feedback (feedback_id ).get_result ()
133133 assert get_feedback is not None
134134
@@ -139,6 +139,7 @@ def test_feedback(self):
139139 delete_feedback = self .compare_comply .delete_feedback (feedback_id ).get_result ()
140140 assert delete_feedback is not None
141141
142+ @pytest .mark .skip (reason = "Temporarily skip" )
142143 def test_batches (self ):
143144 list_batches = self .compare_comply .list_batches ().get_result ()
144145 assert list_batches is not None
You can’t perform that action at this time.
0 commit comments