Skip to content

Commit 5ac545f

Browse files
committed
ci cleanup
1 parent 8dddc3d commit 5ac545f

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

.github/workflows/main.yaml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -80,52 +80,52 @@ jobs:
8080
run: |
8181
echo "FASTPARQUET_DATAPAGE_V2=$FASTPARQUET_DATAPAGE_V2"
8282
pytest --verbose --cov=fastparquet
83-
pandas:
84-
name: pandas
85-
runs-on: ubuntu-latest
86-
steps:
87-
- name: APT
88-
run: sudo apt-get install liblzo2-dev
89-
90-
- name: Checkout
91-
uses: actions/checkout@v2
92-
with:
93-
fetch-depth: 0
94-
95-
- name: Fetch upstream tags
96-
run: |
97-
git remote add upstream https://github.com/dask/fastparquet.git
98-
git fetch upstream --tags
99-
100-
- name: Setup conda
101-
uses: conda-incubator/setup-miniconda@v3
102-
with:
103-
environment-file: ci/environment-py310.yml
104-
105-
- name: pip-install
106-
shell: bash -l {0}
107-
run: |
108-
pip install Cython
109-
pip install hypothesis
110-
pip install pytest-localserver pytest-xdist pytest-asyncio
111-
pip install -e . --no-deps # Install fastparquet
112-
pip install versioneer # Needed for pandas build
113-
git clone https://github.com/pandas-dev/pandas
114-
cd pandas
115-
python setup.py build_ext -j 4
116-
pip install -e . --no-build-isolation
117-
118-
- name: Run Tests
119-
shell: bash -l {0}
120-
run: |
121-
pytest -v fastparquet/ # fastparquet test suite against dev pandas
122-
pytest --verbose pandas/pandas/tests/io/test_parquet.py
123-
# Test parquet with different filesystems
124-
pytest --verbose pandas/pandas/tests/io/test_gcs.py pandas/pandas/tests/io/test_fsspec.py -k "parquet"
125-
83+
# pandas:
84+
# name: pandas
85+
# runs-on: ubuntu-latest
86+
# steps:
87+
# - name: APT
88+
# run: sudo apt-get install liblzo2-dev
89+
#
90+
# - name: Checkout
91+
# uses: actions/checkout@v2
92+
# with:
93+
# fetch-depth: 0
94+
#
95+
# - name: Fetch upstream tags
96+
# run: |
97+
# git remote add upstream https://github.com/dask/fastparquet.git
98+
# git fetch upstream --tags
99+
#
100+
# - name: Setup conda
101+
# uses: conda-incubator/setup-miniconda@v3
102+
# with:
103+
# environment-file: ci/environment-py310.yml
104+
#
105+
# - name: pip-install
106+
# shell: bash -l {0}
107+
# run: |
108+
# pip install Cython
109+
# pip install hypothesis
110+
# pip install pytest-localserver pytest-xdist pytest-asyncio
111+
# pip install -e . --no-deps # Install fastparquet
112+
# pip install versioneer # Needed for pandas build
113+
# git clone https://github.com/pandas-dev/pandas
114+
# cd pandas
115+
# python setup.py build_ext -j 4
116+
# pip install -e . --no-build-isolation
117+
#
118+
# - name: Run Tests
119+
# shell: bash -l {0}
120+
# run: |
121+
# pytest -v fastparquet/ # fastparquet test suite against dev pandas
122+
# pytest --verbose pandas/pandas/tests/io/test_parquet.py
123+
# # Test parquet with different filesystems
124+
# pytest --verbose pandas/pandas/tests/io/test_gcs.py pandas/pandas/tests/io/test_fsspec.py -k "parquet"
125+
#
126126
win:
127127
name: win
128-
runs-on: windows-2019
128+
runs-on: windows-2022
129129

130130
steps:
131131
- name: Checkout

0 commit comments

Comments
 (0)