From 234d8973c44d0dec9eda2b69836e62f7d164cff7 Mon Sep 17 00:00:00 2001 From: Samir Nasibli Date: Sat, 7 Dec 2019 04:43:54 -0600 Subject: [PATCH 1/2] added 'xlrd' for benchmark tests conda env * added 'xlrd' pckg in benchmark tests conda env, that is needed for tests dump in excel --- buildscripts/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildscripts/test.py b/buildscripts/test.py index 6f4ac9d32..c9e0928a9 100644 --- a/buildscripts/test.py +++ b/buildscripts/test.py @@ -200,6 +200,7 @@ for package in sdc_packages: if '.tar.bz2' in package and package_type == 'conda': format_print(f'Run benchmark tests for sdc conda package: {package}') - create_conda_env(conda_activate, test_env, python, sdc_env['test'] + ['openpyxl'], conda_channels) + create_conda_env(conda_activate, test_env, python, sdc_env['test'] + ['openpyxl'] + ['xlrd'], + conda_channels) run_command(f'{test_env_activate} && conda install -y {package}') run_command(f'{test_env_activate} && python -W ignore -m sdc.runtests {benchmark_argv}') From 85ed6778796f09ce9db75b2c7de5b4d09ad319a1 Mon Sep 17 00:00:00 2001 From: Samir Nasibli Date: Sat, 7 Dec 2019 10:50:52 -0600 Subject: [PATCH 2/2] misc update --- buildscripts/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/test.py b/buildscripts/test.py index c9e0928a9..eeed670cb 100644 --- a/buildscripts/test.py +++ b/buildscripts/test.py @@ -200,7 +200,7 @@ for package in sdc_packages: if '.tar.bz2' in package and package_type == 'conda': format_print(f'Run benchmark tests for sdc conda package: {package}') - create_conda_env(conda_activate, test_env, python, sdc_env['test'] + ['openpyxl'] + ['xlrd'], + create_conda_env(conda_activate, test_env, python, sdc_env['test'] + ['openpyxl', 'xlrd'], conda_channels) run_command(f'{test_env_activate} && conda install -y {package}') run_command(f'{test_env_activate} && python -W ignore -m sdc.runtests {benchmark_argv}')