From 930c05621e5ba08c525ea216d96444110fd114c1 Mon Sep 17 00:00:00 2001 From: Dan Streetman Date: Mon, 15 Jun 2020 18:24:10 -0400 Subject: [PATCH] test: move tests/* into ubuntu_archive_assistant/ This single test is part of ubuntu-archive-assistant, and fails several flake8 tests; throw it in with the rest, so it's ignored by flake8. None of it is actually shipped. Signed-off-by: Dan Streetman --- {tests => ubuntu_archive_assistant/tests}/test_command.py | 1 - 1 file changed, 1 deletion(-) rename {tests => ubuntu_archive_assistant/tests}/test_command.py (99%) diff --git a/tests/test_command.py b/ubuntu_archive_assistant/tests/test_command.py similarity index 99% rename from tests/test_command.py rename to ubuntu_archive_assistant/tests/test_command.py index f07b6e9..86d0af7 100644 --- a/tests/test_command.py +++ b/ubuntu_archive_assistant/tests/test_command.py @@ -108,4 +108,3 @@ class TestCommand(unittest.TestCase): self.fail("Did not crash as expected") except Exception as e: self.assertIn('unexpected', e.args) -