diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bfb31f..0f8b053 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -110,6 +110,12 @@ jobs: echo “Nothing to test” else pytest $args + ret=$? + echo $ret + if [ "$ret" = 5 ]; then + echo "No tests collected." + exit 0 + fi + exit "$ret" fi - \ No newline at end of file diff --git a/data-mapping/app/README.md b/data-mapping/app/README.md new file mode 100644 index 0000000..e2e703d --- /dev/null +++ b/data-mapping/app/README.md @@ -0,0 +1,2 @@ +# Data Mapping + diff --git a/external-access-integration/app/README.md b/external-access-integration/app/README.md new file mode 100644 index 0000000..1fe3d9a --- /dev/null +++ b/external-access-integration/app/README.md @@ -0,0 +1 @@ +# External Access Integration \ No newline at end of file diff --git a/external-access-integration/app/manifest.yml b/external-access-integration/app/manifest.yml index 8f5e15b..6090434 100644 --- a/external-access-integration/app/manifest.yml +++ b/external-access-integration/app/manifest.yml @@ -10,6 +10,7 @@ artifacts: setup_script: setup_script.sql default_streamlit: core.ui extension_code: true + readme: README.md references: - external_access_reference: diff --git a/spcs-three-tier/app/readme.md b/spcs-three-tier/app/README.md similarity index 100% rename from spcs-three-tier/app/readme.md rename to spcs-three-tier/app/README.md diff --git a/spcs-three-tier/app/manifest.yml b/spcs-three-tier/app/manifest.yml index 4f0f146..f2bfc97 100644 --- a/spcs-three-tier/app/manifest.yml +++ b/spcs-three-tier/app/manifest.yml @@ -8,6 +8,7 @@ configuration: artifacts: setup_script: setup.sql + readme: README.md default_web_endpoint: service: app_public.frontend diff --git a/spcs-three-tier/prepare/spcs_setup.sql b/spcs-three-tier/prepare/spcs_setup.sql deleted file mode 100644 index cd712e7..0000000 --- a/spcs-three-tier/prepare/spcs_setup.sql +++ /dev/null @@ -1,5 +0,0 @@ -USE ROLE ACCOUNTADMIN; -CREATE SECURITY INTEGRATION IF NOT EXISTS snowservices_ingress_oauth - TYPE=oauth - OAUTH_CLIENT=snowservices_ingress - ENABLED=true; \ No newline at end of file diff --git a/spcs-three-tier/setup.sh b/spcs-three-tier/setup.sh index fb80d0a..3d6d84f 100755 --- a/spcs-three-tier/setup.sh +++ b/spcs-three-tier/setup.sh @@ -1,5 +1,4 @@ set -e -snow sql -f "prepare/spcs_setup.sql" snow sql -f "prepare/provider_setup.sql" snow sql -f "prepare/consumer_setup.sql"