-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Actions * fix * text fix * Fixes * Fix Co-authored-by: Patryk Czajka <[email protected]>
- Loading branch information
1 parent
a44f54a
commit 3009e8b
Showing
11 changed files
with
416 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# serializer version: 1 | ||
# name: test_get_deploy_sql[kwargs0] | ||
''' | ||
CREATE OR REPLACE STREAMLIT IDENTIFIER('test_streamlit') | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit' | ||
|
||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs1] | ||
''' | ||
CREATE IF NOT EXISTS STREAMLIT IDENTIFIER('test_streamlit') | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit' | ||
|
||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs2] | ||
''' | ||
CREATE STREAMLIT IDENTIFIER('test_streamlit') | ||
ROOT_LOCATION = 'test_stage' | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit' | ||
|
||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs3] | ||
''' | ||
CREATE OR REPLACE STREAMLIT IDENTIFIER('test_streamlit') | ||
ROOT_LOCATION = 'test_stage' | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit' | ||
|
||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs4] | ||
''' | ||
CREATE IF NOT EXISTS STREAMLIT IDENTIFIER('test_streamlit') | ||
ROOT_LOCATION = 'test_stage' | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit' | ||
|
||
''' | ||
# --- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# serializer version: 1 | ||
# name: test_get_deploy_sql[kwargs0] | ||
''' | ||
CREATE OR REPLACE STREAMLIT IDENTIFIER('test_streamlit') | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs1] | ||
''' | ||
CREATE IF NOT EXISTS STREAMLIT IDENTIFIER('test_streamlit') | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs2] | ||
''' | ||
CREATE STREAMLIT IDENTIFIER('test_streamlit') | ||
ROOT_LOCATION = 'test_stage' | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs3] | ||
''' | ||
CREATE OR REPLACE STREAMLIT IDENTIFIER('test_streamlit') | ||
ROOT_LOCATION = 'test_stage' | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- | ||
# name: test_get_deploy_sql[kwargs4] | ||
''' | ||
CREATE IF NOT EXISTS STREAMLIT IDENTIFIER('test_streamlit') | ||
ROOT_LOCATION = 'test_stage' | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- | ||
# name: test_nativeapp_children_interface | ||
''' | ||
CREATE STREAMLIT IDENTIFIER('test_streamlit') | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- | ||
# name: test_nativeapp_children_interface.1 | ||
''' | ||
CREATE STREAMLIT IDENTIFIER('test_streamlit') | ||
MAIN_FILE = 'streamlit_app.py' | ||
QUERY_WAREHOUSE = 'test_warehouse' | ||
TITLE = 'My Fancy Streamlit'; | ||
''' | ||
# --- |
Oops, something went wrong.