[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
This commit is contained in:
Felipe Monteiro 2018-05-02 17:11:31 -04:00
parent c094b16ff6
commit 3cbd29e414
1 changed files with 1 additions and 3 deletions

View File

@ -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])