Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
mickahell committed Nov 21, 2024
1 parent e6aaeb6 commit 7c0ab3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
19 changes: 10 additions & 9 deletions tests/test_basic_container.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for basic container."""

import os
from unittest import TestCase
import docker
Expand Down Expand Up @@ -72,15 +73,15 @@ def test_version_endpoint(self):
) as vers_file:
self.assertTrue(bytes(vers_file.read(), "utf-8") in output)

# def test_qiskit_version_endpoint(self):
# """Test qiskit version endpoint."""
# self.noflagcmd = "-qiskit-version"
# exit_code, output = self.container.exec_run(
# cmd=f"{self.binary} {self.noflagcmd}", tty=True
# )
#
# self.assertEqual(exit_code, 0)
# self.assertTrue(b"qiskit" in output)
# def test_qiskit_version_endpoint(self):
# """Test qiskit version endpoint."""
# self.noflagcmd = "-qiskit-version"
# exit_code, output = self.container.exec_run(
# cmd=f"{self.binary} {self.noflagcmd}", tty=True
# )
#
# self.assertEqual(exit_code, 0)
# self.assertTrue(b"qiskit" in output)

def test_os_version_endpoint(self):
"""Test os version endpoint."""
Expand Down
1 change: 1 addition & 0 deletions tests/test_compute_container.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for compute subcmd container."""

import os
from unittest import TestCase
import docker
Expand Down

0 comments on commit 7c0ab3a

Please sign in to comment.