mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-30 19:09:34 -06:00
add dependencies to yaml
This commit is contained in:
4
.github/workflows/ci-bats-unix.yaml
vendored
4
.github/workflows/ci-bats-unix.yaml
vendored
@@ -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: |
|
||||
|
||||
2
.github/workflows/ci-bats-windows.yaml
vendored
2
.github/workflows/ci-bats-windows.yaml
vendored
@@ -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: |
|
||||
|
||||
@@ -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);"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user