[PATCH 2/4] test/acceptance: Remove the CONTINUOUS_INTEGRATION tags

Thomas Huth posted 4 patches 5 years, 3 months ago
Maintainers: "Alex Bennée" <alex.bennee@linaro.org>, "Hervé Poussineau" <hpoussin@reactos.org>, Cleber Rosa <crosa@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Fam Zheng <fam@euphon.net>, Thomas Huth <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@redhat.com>
[PATCH 2/4] test/acceptance: Remove the CONTINUOUS_INTEGRATION tags
Posted by Thomas Huth 5 years, 3 months ago
We are not running the acceptance tests on Travis anymore, so these
checks can be removed now.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/acceptance/ppc_prep_40p.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/acceptance/ppc_prep_40p.py b/tests/acceptance/ppc_prep_40p.py
index e82755c9cf..96ba13b894 100644
--- a/tests/acceptance/ppc_prep_40p.py
+++ b/tests/acceptance/ppc_prep_40p.py
@@ -22,7 +22,6 @@ class IbmPrep40pMachine(Test):
     # All rights reserved.
     # U.S. Government Users Restricted Rights - Use, duplication or disclosure
     # restricted by GSA ADP Schedule Contract with IBM Corp.
-    @skipIf(os.getenv('CONTINUOUS_INTEGRATION'), 'Running on Travis-CI')
     @skipUnless(os.getenv('AVOCADO_ALLOW_UNTRUSTED_CODE'), 'untrusted code')
     def test_factory_firmware_and_netbsd(self):
         """
@@ -61,7 +60,6 @@ class IbmPrep40pMachine(Test):
         wait_for_console_pattern(self, '>> Memory: 192M')
         wait_for_console_pattern(self, '>> CPU type PowerPC,604')
 
-    @skipIf(os.getenv('CONTINUOUS_INTEGRATION'), 'Running on Travis-CI')
     def test_openbios_and_netbsd(self):
         """
         :avocado: tags=arch:ppc
-- 
2.18.2


Re: [PATCH 2/4] test/acceptance: Remove the CONTINUOUS_INTEGRATION tags
Posted by Philippe Mathieu-Daudé 5 years, 3 months ago
On 10/23/20 9:33 AM, Thomas Huth wrote:
> We are not running the acceptance tests on Travis anymore, so these
> checks can be removed now.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   tests/acceptance/ppc_prep_40p.py | 2 --
>   1 file changed, 2 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>