You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
I got error in testing after command: python3 -m unittest discover
danghai@ubuntu:~/test/gif-for-cli$ python3 -m unittest discover
..................................EE..........
======================================================================
ERROR: tests.test_export (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: tests.test_export
Traceback (most recent call last):
File "/usr/lib/python3.5/unittest/loader.py", line 428, in _find_test_path
module = self._get_module_from_name(name)
File "/usr/lib/python3.5/unittest/loader.py", line 369, in _get_module_from_name
__import__(name)
File "/home/danghai/test/gif-for-cli/tests/test_export.py", line 22, in <module>
from gif_for_cli.export import _export_txt_frames, _get_txt_frames, _run_ffmpeg, export, export_txt_frame
File "/home/danghai/test/gif-for-cli/gif_for_cli/export.py", line 23, in <module>
from . import third_party
ImportError: cannot import name 'third_party'
======================================================================
ERROR: tests.test_main (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: tests.test_main
Traceback (most recent call last):
File "/usr/lib/python3.5/unittest/loader.py", line 428, in _find_test_path
module = self._get_module_from_name(name)
File "/usr/lib/python3.5/unittest/loader.py", line 369, in _get_module_from_name
__import__(name)
File "/home/danghai/test/gif-for-cli/tests/test_main.py", line 21, in <module>
from gif_for_cli.__main__ import execute
File "/home/danghai/test/gif-for-cli/gif_for_cli/__main__.py", line 25, in <module>
from .export import export
File "/home/danghai/test/gif-for-cli/gif_for_cli/export.py", line 23, in <module>
from . import third_party
ImportError: cannot import name 'third_party'
----------------------------------------------------------------------
Ran 46 tests in 0.035s
FAILED (errors=2)
The text was updated successfully, but these errors were encountered:
I got error in testing after command:
python3 -m unittest discover
The text was updated successfully, but these errors were encountered: