Skip to content

Commit 20228b8

Browse files
committed
add parameters file; more cleanups
1 parent 7121202 commit 20228b8

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
@@ -226,37 +226,37 @@ jobs:
226226
# PYTEST_ADDOPTS: --color=yes --tb=short
227227
# shell: bash
228228

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

261261
test-fips:
262262
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)