Skip to content

Commit

Permalink
[DOCS] DOC-818: Update GX Core Overview and Try GX (#10237)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
rachhouse and pre-commit-ci[bot] authored Aug 21, 2024
1 parent 741fa7d commit 00e9207
Show file tree
Hide file tree
Showing 15 changed files with 570 additions and 387 deletions.
2 changes: 1 addition & 1 deletion docs/docusaurus/docs/cloud/connect/connect_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Environment variables securely store your GX Cloud access credentials.
```
:::note
After you save your **GX_CLOUD_ACCESS_TOKEN** and **GX_CLOUD_ORGANIZTION_ID**, you can use Python scripts to access GX Cloud and complete other tasks. See the [GX OSS guides](/core/introduction/about_gx.md).
After you save your **GX_CLOUD_ACCESS_TOKEN** and **GX_CLOUD_ORGANIZTION_ID**, you can use Python scripts to access GX Cloud and complete other tasks. See the [GX Core guides](/core/introduction/introduction.md).
:::
2. Optional. If you created a temporary file to record your user access token and Organization ID, delete it.
Expand Down
18 changes: 18 additions & 0 deletions docs/docusaurus/docs/components/examples_under_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@

docs_tests = []

try_gx = [
IntegrationTestFixture(
# To test, run:
# pytest --docs-tests -k "try_gx_exploratory" tests/integration/test_script_runner.py
name="try_gx_exploratory",
user_flow_script="docs/docusaurus/docs/core/introduction/try_gx_exploratory.py",
backend_dependencies=[],
),
# To test, run:
# pytest --docs-tests --postgresql -k "try_gx_end_to_end" tests/integration/test_script_runner.py
IntegrationTestFixture(
name="try_gx_end_to_end",
user_flow_script="docs/docusaurus/docs/core/introduction/try_gx_end_to_end.py",
backend_dependencies=[BackendDependencies.POSTGRESQL],
),
]

create_a_data_context = [
IntegrationTestFixture(
# To test, run:
Expand Down Expand Up @@ -524,6 +541,7 @@

# Extend the docs_tests list with the above sublists (only the docs_tests list is imported
# into `test_script_runner.py` and actually used in CI checks).
docs_tests.extend(try_gx)

docs_tests.extend(create_a_data_context)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ Environment variables securely store your GX Cloud access credentials.
export GX_CLOUD_ORGANIZATION_ID=<organization_id>
```

After you save your **GX_CLOUD_ACCESS_TOKEN** and **GX_CLOUD_ORGANIZTION_ID**, you can use Python scripts to access GX Cloud and complete other tasks. See the [GX OSS guides](/core/introduction/about_gx.md).
After you save your **GX_CLOUD_ACCESS_TOKEN** and **GX_CLOUD_ORGANIZTION_ID**, you can use Python scripts to access GX Cloud and complete other tasks. See the [Introduction to GX Core](/core/introduction/introduction.md).

2. Optional. If you created a temporary file to record your user access token and Organization ID, delete it.

Expand Down
75 changes: 0 additions & 75 deletions docs/docusaurus/docs/core/introduction/about_gx.md

This file was deleted.

Loading

0 comments on commit 00e9207

Please sign in to comment.