Skip to content

Commit f2a488b

Browse files
Update example apps (snowflakedb#13)
1 parent c7c986c commit f2a488b

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,12 @@ jobs:
110110
echo “Nothing to test”
111111
else
112112
pytest $args
113+
ret=$?
114+
echo $ret
115+
if [ "$ret" = 5 ]; then
116+
echo "No tests collected."
117+
exit 0
118+
fi
119+
exit "$ret"
113120
fi
114-
115121

data-mapping/app/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Data Mapping
2+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# External Access Integration

external-access-integration/app/manifest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ artifacts:
1010
setup_script: setup_script.sql
1111
default_streamlit: core.ui
1212
extension_code: true
13+
readme: README.md
1314

1415
references:
1516
- external_access_reference:
File renamed without changes.

spcs-three-tier/app/manifest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ configuration:
88

99
artifacts:
1010
setup_script: setup.sql
11+
readme: README.md
1112

1213
default_web_endpoint:
1314
service: app_public.frontend

spcs-three-tier/prepare/spcs_setup.sql

Lines changed: 0 additions & 5 deletions
This file was deleted.

spcs-three-tier/setup.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
set -e
2-
snow sql -f "prepare/spcs_setup.sql"
32
snow sql -f "prepare/provider_setup.sql"
43
snow sql -f "prepare/consumer_setup.sql"
54

0 commit comments

Comments
 (0)