Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions .buildkite/nightly_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,15 @@ steps:
matrix:
- "3.10"
- "3.11"
- label: "🔨 [Python {{ matrix }}] Google Calendar"
<<: *retries
command: ".buildkite/run_functional_test.sh"
env:
PYTHON_VERSION: "{{ matrix }}"
CONNECTOR: "google_calendar"
DATA_SIZE: "small"
artifact_paths:
- "perf8-report-*/**/*"
matrix:
- "3.10"
- "3.11"
20 changes: 20 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,26 @@ steps:
artifact_paths:
- "perf8-report-*/**/*"

- path:
- "connectors/sources/google_calendar.py"
- "connectors/sources/google.py"
- "tests/sources/fixtures/google_calendar/**"
- "tests/sources/fixtures/fixture.py"
- "${DOCKERFILE_FTEST_PATH}"
- "requirements/**"
config:
label: "🔨 Google Calendar"
<<: *test-agents
<<: *retries
env:
- PYTHON_VERSION=3.11
- DATA_SIZE=small
- CONNECTOR=google_calendar
command:
- ".buildkite/run_functional_test.sh"
artifact_paths:
- "perf8-report-*/**/*"

# ----
# DRA publishing
# ----
Expand Down
1 change: 1 addition & 0 deletions connectors/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def _default_config():
"dropbox": "connectors.sources.dropbox:DropboxDataSource",
"github": "connectors.sources.github:GitHubDataSource",
"gmail": "connectors.sources.gmail:GMailDataSource",
"google_calendar": "connectors.sources.google_calendar:GoogleCalendarDataSource",
"google_cloud_storage": "connectors.sources.google_cloud_storage:GoogleCloudStorageDataSource",
"google_drive": "connectors.sources.google_drive:GoogleDriveDataSource",
"graphql": "connectors.sources.graphql:GraphQLDataSource",
Expand Down
Loading