Skip to content

Commit bb04b28

Browse files
author
Cecylia Borek
committed
remove debug steps
1 parent 6f4d2c3 commit bb04b28

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
- name: Install tox
4545
run: pip install tox
4646

47-
- name: Debug Test Execution
48-
run: tox -e py39 -- -s
47+
- name: Test Execution
48+
run: tox -e py
4949
fossa-scan:
5050
uses: splunk/oss-scanning-public/.github/workflows/oss-scan.yml@main
5151
secrets: inherit

splunklib/results.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ def _parse_results(self, stream):
327327
if strip_line.__len__() == 0:
328328
continue
329329
parsed_line = json_loads(strip_line)
330-
print(f"JSONResultReader: Parsed line: {parsed_line}")
331330
if "preview" in parsed_line:
332331
self.is_preview = parsed_line["preview"]
333332
if "messages" in parsed_line and parsed_line["messages"].__len__() > 0:

tests/searchcommands/test_csc_apps.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,12 @@
1414
# License for the specific language governing permissions and limitations
1515
# under the License.
1616

17-
import logging
1817
import unittest
1918
import pytest
2019

21-
import splunklib
2220
from tests import testlib
2321
from splunklib import results
2422

25-
splunklib.setup_logging(logging.DEBUG)
26-
2723

2824
@pytest.mark.smoke
2925
class TestCSC(testlib.SDKTestCase):

0 commit comments

Comments
 (0)