From 3cbd29e4147476f84c1e6bb8daac524e2100dc66 Mon Sep 17 00:00:00 2001 From: Felipe Monteiro Date: Wed, 2 May 2018 17:11:31 -0400 Subject: [PATCH] [test] Unskip integration tests Due to a rebase issue, integration tests are skipping which is unintended and undesirable. This fixes the issue. Change-Id: I8e37f4610e4a1e9b8fb4fd81aa8643100cd6dfd5 --- deckhand/tests/common/test_gabbi.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/deckhand/tests/common/test_gabbi.py b/deckhand/tests/common/test_gabbi.py index 0a0a99e5..849fa09b 100644 --- a/deckhand/tests/common/test_gabbi.py +++ b/deckhand/tests/common/test_gabbi.py @@ -41,9 +41,7 @@ def __create_temp_test_dir(): test_files = [] for root, dirs, files in os.walk(root_test_dir): - is_test_file = ( - 'gabbits' in root and not root.endswith('gabbits') - ) + is_test_file = 'gabbits' in root if is_test_file: test_files.extend([os.path.abspath(os.path.join(root, f)) for f in files])