Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: |
if find . -name '*.ipynb' -print -quit | grep -q .; then
. .venv-dev/bin/activate
pytest --nbval --ignore=streamlit_app/Product_Analytics/data/ --ignore=Analytical-HandsOn-Projects/Movie_Reviews_Project/Exploring-Movie-Ratings.ipynb || EXIT_CODE=$?
pytest --nbval --ignore=streamlit_app/Product_Analytics/data/ --ignore=Analytical-HandsOn-Projects/ || EXIT_CODE=$?
if [ "${EXIT_CODE:-0}" -ne 0 ]; then
echo "Notebook validation failed" > notebook-fail.log
exit $EXIT_CODE
Expand Down
8 changes: 7 additions & 1 deletion .markdown-link-check.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
{ "pattern": "^https?://netflixtechblog\\.com/" },
{ "pattern": "^https?://(www\\.)?indeed\\.com/" },
{ "pattern": "^https?://leetcode\\.com/" },
{ "pattern": "^https?://(www\\.)?metacareers\\.com/" }
{ "pattern": "^https?://(www\\.)?metacareers\\.com/" },
{ "pattern": "^mailto:" },
{ "pattern": "^/" },
Comment on lines +15 to +16
Copy link

Copilot AI Dec 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding inline comments to document why these patterns are being ignored, especially for the broad patterns like ^/ and ^#. This helps future maintainers understand that these are Jekyll-specific patterns that cannot be validated by markdown-link-check in the source files.

For example:

{ "pattern": "^/", "reason": "Jekyll relative URLs - valid at runtime" },
{ "pattern": "^#", "reason": "Fragment identifiers - validated by Jekyll" },

Note: The markdown-link-check tool doesn't support a "reason" field, but adding a comment block above these patterns would help document the intent.

Suggested change
{ "pattern": "^mailto:" },
{ "pattern": "^/" },
{ "pattern": "^mailto:" },
// Jekyll relative URLs (e.g., {{ "/path" | relative_url }}) – resolved at runtime, not by markdown-link-check
{ "pattern": "^/" },
// Fragment identifiers within the same page – anchors generated/validated by Jekyll, not reliably checkable here

Copilot uses AI. Check for mistakes.
{ "pattern": "^#" },
{ "pattern": "^https?://(www\\.)?amazon\\.com/" },
{ "pattern": "^https?://(www\\.)?uber\\.com/" },
{ "pattern": "^https?://(www\\.)?kaggle\\.com/" }
],
"retryOnHttpStatusCodes": [429, 500, 502, 503],
"retryCount": 3,
Expand Down
2 changes: 2 additions & 0 deletions _pages/best-practices/2-data-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ CREATE TABLE dim_customer (

**Type 2 SCD Implementation in dbt:**

{% raw %}
```sql
-- dbt snapshot for Type 2 SCD
{% snapshot customer_snapshot %}
Expand All @@ -179,6 +180,7 @@ FROM {{ source('crm', 'customers') }}

{% endsnapshot %}
```
{% endraw %}

---

Expand Down
Loading