add dependencies to yaml

This commit is contained in:
jennifersp
2021-11-18 15:51:51 -08:00
parent 7c5d26bd72
commit bef965ff0b
3 changed files with 7 additions and 3 deletions

View File

@@ -61,6 +61,10 @@ jobs:
- name: Install Python Deps
run: |
pip install mysql-connector-python
pip install pandas
pip install pyarrow
- name: Install Parquet-tools
run: brew install parquet-tools
- name: Install Dolt
working-directory: ./go
run: |

View File

@@ -114,6 +114,8 @@ jobs:
- name: Install Python Deps
run: |
pip install mysql-connector-python
pip install pandas
pip install pyarrow
- name: Install Dolt
working-directory: ./go
run: |

View File

@@ -310,7 +310,7 @@ SQL
}
@test "export-tables: parquet file export check with parquet tools" {
brew install parquet-tools
skiponwindows "Has dependencies that are missing on the Jenkins Windows installation."
dolt sql -q "CREATE TABLE test_table (pk int primary key, col1 text, col2 int);"
dolt sql -q "INSERT INTO test_table VALUES (1, 'row1', 22), (2, 'row2', 33), (3, 'row3', 22);"
@@ -330,8 +330,6 @@ SQL
}
@test "export-tables: parquet file export compare pandas and pyarrow reads" {
pip install pandas
pip install pyarrow
dolt sql -q "CREATE TABLE test_table (pk int primary key, col1 text, col2 int);"
dolt sql -q "INSERT INTO test_table VALUES (1, 'row1', 22), (2, 'row2', 33), (3, 'row3', 22);"