We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ran full test suite on branch feature-Directory-GUI
F tests/progs/masking/test_masking.py:54 (test_masking_utility[patch_args_clean0]) patch_args_clean = None def test_masking_utility(patch_args_clean): > arguments.masking_utility() /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:56: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/cjbanks/projects/PyPWA/PyPWA/entries/arguments.py:35: in masking_utility 'masking utility', 'A basic masking utility.' /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:210: in start self.__plugins.load(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:63: in load self.__load_main_plugin(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:68: in __load_main_plugin self.__main = self.__loader.get_plugin_by_name(name) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <PyPWA.core.arguments._loader.RequestedFetcher object at 0x7fcab81074a8> name = 'masking utility' def get_plugin_by_name(self, name): # type: (str) -> arguments_options.Base for plugin in self.__storage.storage: if plugin.get_name() == name: return plugin > raise ValueError("%s not found!" % name) E ValueError: masking utility not found! /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/_loader.py:89: ValueError tests/progs/masking/test_masking.py:54 (test_masking_utility[patch_args_clean0]) @pytest.fixture() def cleanup_temp(): yield > os.remove("testfile.txt") E FileNotFoundError: [Errno 2] No such file or directory: 'testfile.txt' /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:43: FileNotFoundError F tests/progs/masking/test_masking.py:54 (test_masking_utility[patch_args_clean1]) patch_args_clean = None def test_masking_utility(patch_args_clean): > arguments.masking_utility() /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:56: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/cjbanks/projects/PyPWA/PyPWA/entries/arguments.py:35: in masking_utility 'masking utility', 'A basic masking utility.' /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:210: in start self.__plugins.load(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:63: in load self.__load_main_plugin(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:68: in __load_main_plugin self.__main = self.__loader.get_plugin_by_name(name) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <PyPWA.core.arguments._loader.RequestedFetcher object at 0x7fcab81074a8> name = 'masking utility' def get_plugin_by_name(self, name): # type: (str) -> arguments_options.Base for plugin in self.__storage.storage: if plugin.get_name() == name: return plugin > raise ValueError("%s not found!" % name) E ValueError: masking utility not found! /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/_loader.py:89: ValueError tests/progs/masking/test_masking.py:54 (test_masking_utility[patch_args_clean1]) @pytest.fixture() def cleanup_temp(): yield > os.remove("testfile.txt") E FileNotFoundError: [Errno 2] No such file or directory: 'testfile.txt' /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:43: FileNotFoundError F tests/progs/masking/test_masking.py:71 (test_masking_warning) patch_args_warning = None def test_masking_warning(patch_args_warning): with pytest.warns(UserWarning): > arguments.masking_utility() /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/cjbanks/projects/PyPWA/PyPWA/entries/arguments.py:35: in masking_utility 'masking utility', 'A basic masking utility.' /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:210: in start self.__plugins.load(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:63: in load self.__load_main_plugin(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:68: in __load_main_plugin self.__main = self.__loader.get_plugin_by_name(name) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <PyPWA.core.arguments._loader.RequestedFetcher object at 0x7fcab81074a8> name = 'masking utility' def get_plugin_by_name(self, name): # type: (str) -> arguments_options.Base for plugin in self.__storage.storage: if plugin.get_name() == name: return plugin > raise ValueError("%s not found!" % name) E ValueError: masking utility not found! /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/_loader.py:89: ValueError tests/progs/masking/test_masking.py:71 (test_masking_warning) @pytest.fixture() def cleanup_temp(): yield > os.remove("testfile.txt") E FileNotFoundError: [Errno 2] No such file or directory: 'testfile.txt' /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:43: FileNotFoundError F tests/progs/masking/test_masking.py:89 (test_masking_crash) patch_args_critical = None def test_masking_crash(patch_args_critical): with pytest.raises(IndexError): > arguments.masking_utility() /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:92: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/cjbanks/projects/PyPWA/PyPWA/entries/arguments.py:35: in masking_utility 'masking utility', 'A basic masking utility.' /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:210: in start self.__plugins.load(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:63: in load self.__load_main_plugin(name) /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/start.py:68: in __load_main_plugin self.__main = self.__loader.get_plugin_by_name(name) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <PyPWA.core.arguments._loader.RequestedFetcher object at 0x7fcab81074a8> name = 'masking utility' def get_plugin_by_name(self, name): # type: (str) -> arguments_options.Base for plugin in self.__storage.storage: if plugin.get_name() == name: return plugin > raise ValueError("%s not found!" % name) E ValueError: masking utility not found! /home/cjbanks/projects/PyPWA/PyPWA/core/arguments/_loader.py:89: ValueError tests/progs/masking/test_masking.py:89 (test_masking_crash) @pytest.fixture() def cleanup_temp(): yield > os.remove("testfile.txt") E FileNotFoundError: [Errno 2] No such file or directory: 'testfile.txt' /home/cjbanks/projects/PyPWA/tests/progs/masking/test_masking.py:43: FileNotFoundError
The text was updated successfully, but these errors were encountered:
markjonestx
No branches or pull requests
Ran full test suite on branch feature-Directory-GUI
The text was updated successfully, but these errors were encountered: