Skip to content

Commit

Permalink
Update test_workflow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mickahell authored Oct 1, 2023
1 parent d9d06e6 commit f341adc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_workflow.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for CLI commands."""
import os
from unittest import TestCase
from unittest import TestCase, skip
from qiskit_ibm_runtime import QiskitRuntimeService
import pandas as pd
from cvxopt import matrix
Expand All @@ -17,13 +17,15 @@ def authentication():
class TestUtils(TestCase):
"""Test class for Workflow cli."""

@skip("Remote call.")
def test_authentication(self):
"""Test for Authentication command."""
authentication()

service = QiskitRuntimeService()
self.assertTrue(service.active_account()["verify"], True)

@skip("Remote call.")
def test_kernel_flow(self):
"""Test for Kernel flow command."""
authentication()
Expand Down

0 comments on commit f341adc

Please sign in to comment.