Skip to content

Commit 091fb6c

Browse files
snowflake-provisionerSnowflake Authors
andauthored
Project import generated by Copybara. (#29)
GitOrigin-RevId: 565ffcfe93e7c9db631e4326751a6d4043181ed0 Co-authored-by: Snowflake Authors <[email protected]>
1 parent dbe9f94 commit 091fb6c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.3 (2023-07-12)
3+
## 1.0.3 (2023-07-14)
44

55
### Behavior Changes
66
- Model Registry: When predicting a model whose output is a list of NumPy ndarray, the output would not be flattened, instead, every ndarray will act as a feature(column) in the output.

ci/RunTests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616

1717
set -o pipefail
18-
set -e
18+
set -u
1919

2020
bazel="bazel"
2121
mode="standard"
@@ -82,7 +82,7 @@ bazel_exit_code=$?
8282
# 0: Success;
8383
# 4: Build Successful but no tests found
8484
# See https://bazel.build/run/scripts#exit-codes
85-
if [[ ${MODE} = "diff-only" && ${bazel_exit_code} -eq 4 ]] ; then
85+
if [[ ${mode} = "diff-only" && ${bazel_exit_code} -eq 4 ]] ; then
8686
exit 0
8787
fi
8888
exit $bazel_exit_code

ci/build_and_run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# - This is to mimic the behavior of using snowml wheel package in user land.
2121

2222
set -o pipefail
23-
set -eu
23+
set -u
2424

2525
PROG=$0
2626

ci/type_check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# we used `kind('py_.* rule')` filter.
2626

2727
set -o pipefail
28-
set -e
28+
set -u
2929

3030
bazel="bazel"
3131
affected_targets=""

tests/integ/snowflake/ml/model/deployment_to_snowservice_integ_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def setUpClass(cls) -> None:
5555

5656
cls.FULL_IMAGE_REPO_PATH = f"{registry_host}/{cls.TEST_DB}/{cls.TEST_SCHEMA}/{cls.TEST_IMAGE_REPO}/".lower()
5757

58-
cls._session = Session.builder.configs({**cls.login_options}).create()
58+
cls._session = Session.builder.configs({**login_options}).create()
5959
cls._db_manager = db_manager.DBManager(cls._session)
6060
cls._db_manager.set_role(cls.TEST_ROLE)
6161
cls._db_manager.create_stage(cls.TEST_STAGE, cls.TEST_SCHEMA, cls.TEST_DB, sse_encrypted=True)

0 commit comments

Comments
 (0)