Skip to content

Commit b1f729e

Browse files
committed
add parameters file; more cleanups
1 parent 582749d commit b1f729e

File tree

2 files changed

+43
-31
lines changed

2 files changed

+43
-31
lines changed

.github/workflows/build_test.yml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -224,37 +224,37 @@ jobs:
224224
# PYTEST_ADDOPTS: --color=yes --tb=short
225225
# shell: bash
226226

227-
test-noarrowextension:
228-
name: No Arrow Extension Test ${{ matrix.os.download_name }}-${{ matrix.python-version }}-${{ matrix.cloud-provider }}
229-
needs: lint
230-
runs-on: ${{ matrix.os.image_name }}
231-
strategy:
232-
fail-fast: false
233-
matrix:
234-
os:
235-
- image_name: ubuntu-latest
236-
download_name: linux
237-
python-version: [3.8]
238-
cloud-provider: [aws]
239-
steps:
240-
- uses: actions/checkout@v3
241-
- name: Set up Python
242-
uses: actions/setup-python@v4
243-
with:
244-
python-version: ${{ matrix.python-version }}
245-
- name: Display Python version
246-
run: python -c "import sys; print(sys.version)"
247-
- name: Upgrade setuptools, pip and wheel
248-
run: python -m pip install -U setuptools pip wheel
249-
- name: Install tox
250-
run: python -m pip install tox>=4
251-
- name: Run tests
252-
run: python -m tox run -e noarrowextension
253-
env:
254-
PYTHON_VERSION: ${{ matrix.python-version }}
255-
cloud_provider: ${{ matrix.cloud-provider }}
256-
PYTEST_ADDOPTS: --color=yes --tb=short
257-
shell: bash
227+
# test-noarrowextension:
228+
# name: No Arrow Extension Test ${{ matrix.os.download_name }}-${{ matrix.python-version }}-${{ matrix.cloud-provider }}
229+
# needs: lint
230+
# runs-on: ${{ matrix.os.image_name }}
231+
# strategy:
232+
# fail-fast: false
233+
# matrix:
234+
# os:
235+
# - image_name: ubuntu-latest
236+
# download_name: linux
237+
# python-version: [3.8]
238+
# cloud-provider: [aws]
239+
# steps:
240+
# - uses: actions/checkout@v3
241+
# - name: Set up Python
242+
# uses: actions/setup-python@v4
243+
# with:
244+
# python-version: ${{ matrix.python-version }}
245+
# - name: Display Python version
246+
# run: python -c "import sys; print(sys.version)"
247+
# - name: Upgrade setuptools, pip and wheel
248+
# run: python -m pip install -U setuptools pip wheel
249+
# - name: Install tox
250+
# run: python -m pip install tox>=4
251+
# - name: Run tests
252+
# run: python -m tox run -e noarrowextension
253+
# env:
254+
# PYTHON_VERSION: ${{ matrix.python-version }}
255+
# cloud_provider: ${{ matrix.cloud-provider }}
256+
# PYTEST_ADDOPTS: --color=yes --tb=short
257+
# shell: bash
258258

259259
test-fips:
260260
name: Test FIPS linux-3.8-${{ matrix.cloud-provider }}

test/parameters.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
3+
#
4+
5+
CONNECTION_PARAMETERS = {
6+
"account": "test",
7+
"user": "test",
8+
"password": "test",
9+
"database": "test",
10+
"schema": "public",
11+
"host": "snowflake.localhost.localstack.cloud",
12+
}

0 commit comments

Comments
 (0)