diff --git a/__init__.py b/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/test_suites/README.rst b/test_suites/README.rst deleted file mode 100644 index 48cc274e..00000000 --- a/test_suites/README.rst +++ /dev/null @@ -1,8 +0,0 @@ -Main Module -=========== -This module contains the dependencies to install all others modules - -Contributors ------------- -* Jordi Riera -* David Dufresne diff --git a/test_suites/__init__.py b/test_suites/__init__.py deleted file mode 100644 index 6f71e463..00000000 --- a/test_suites/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2018 Jordi Riera -# © 2018 David Dufresne -# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/test_suites/__manifest__.py b/test_suites/__manifest__.py deleted file mode 100644 index adcfd28f..00000000 --- a/test_suites/__manifest__.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2018 Jordi Riera -# © 2018 David Dufresne -# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). - -{ - 'name': 'tests', - 'version': 'test', - 'author': 'Numigi', - 'maintainer': 'Numigi', - 'license': 'LGPL-3', - 'category': 'Other', - 'summary': 'Tests to make sure the setup is as wanted.', - 'depends': [ - ], - 'data': [], - 'installable': True, - 'application': True, -} diff --git a/test_suites/static/description/icon.png b/test_suites/static/description/icon.png deleted file mode 100644 index 4d4a1be0..00000000 Binary files a/test_suites/static/description/icon.png and /dev/null differ diff --git a/test_suites/tests/__init__.py b/test_suites/tests/__init__.py deleted file mode 100644 index 12d6c27f..00000000 --- a/test_suites/tests/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2018 Jordi Riera -# © 2018 David Dufresne -# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). - -from . import test_linux_commands diff --git a/test_suites/tests/test_linux_commands.py b/test_suites/tests/test_linux_commands.py deleted file mode 100644 index 4a08ba22..00000000 --- a/test_suites/tests/test_linux_commands.py +++ /dev/null @@ -1,30 +0,0 @@ -"""Check that the linux command lines exists in the docker that will be pushed -""" -import subprocess - -from odoo.tests import common, unittest - - -class CommandLines(common.TransactionCase): - """Test suite for command lines.""" - - def test_updoo(self): - """ updoo is required.""" - # no assert here, the subprocess will crash if the command doesn't exist. - subprocess.call(["updoo", "--version"]) - - def test_gitoo(self): - """ gitoo is required""" - # no assert here, the subprocess will crash if the command doesn't exist. - subprocess.call(["gitoo", "--version"]) - - def test_run_pytest_sh(self): - """ run_pytest.sh""" - # no assert here, the subprocess will crash if the command doesn't exist. - subprocess.call(["run_pytest.sh", "--version"]) - - @unittest.skip("Need to find a way to test run_test.sh.") - def test_run_test_sh(self): - """ run_pytest.sh""" - # no assert here, the subprocess will crash if the command doesn't exist. - subprocess.call(["run_test.sh", "--version"])