Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] DOC-818: Update GX Core Overview and Try GX #10237

Merged
merged 23 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading