From 1ab0eb610a4d4ede4d256ab298626cd0920de77f Mon Sep 17 00:00:00 2001 From: Jay Chia <17691182+jaychia@users.noreply.github.com> Date: Sun, 21 Jul 2024 17:13:53 -0700 Subject: [PATCH] [DOCS] Fix notebook CI (#2544) Co-authored-by: Jay Chia --- .../fotw/fotw-000-data-access.ipynb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/docs/source/user_guide/fotw/fotw-000-data-access.ipynb b/docs/source/user_guide/fotw/fotw-000-data-access.ipynb index 0d5a1a7f98..5c55ff6f93 100644 --- a/docs/source/user_guide/fotw/fotw-000-data-access.ipynb +++ b/docs/source/user_guide/fotw/fotw-000-data-access.ipynb @@ -1,5 +1,42 @@ { "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "3e823b2e", + "metadata": {}, + "outputs": [], + "source": [ + "!pip install getdaft" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b4804cd5", + "metadata": { + "tags": [ + "parameters" + ] + }, + "outputs": [], + "source": [ + "CI = False" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f75f3566", + "metadata": {}, + "outputs": [], + "source": [ + "# Skip this notebook execution in CI because it hits data in a relative path\n", + "if CI:\n", + " import sys\n", + " sys.exit()" + ] + }, { "cell_type": "markdown", "id": "b98f0369-4304-416d-9db9-d2e191be96c1",