File tree Expand file tree Collapse file tree 4 files changed +14
-23
lines changed
Expand file tree Collapse file tree 4 files changed +14
-23
lines changed Original file line number Diff line number Diff line change 2424 run : uv sync --all-extras --dev
2525
2626 - name : Run unit tests
27- run : uv run pytest tests/test_console.py tests/test_datasets.py -v
27+ run : uv run pytest tests/test_console.py tests/test_datasets.py tests/test_integration.py -v
2828
2929 integration-test :
3030 runs-on : ubuntu-latest
8383 sleep 2
8484 done
8585
86- - name : Run integration tests
87- run : uv run pytest tests/test_integration.py tests/ test_marquez_integration.py -v -s
86+ - name : Run Marquez integration tests
87+ run : uv run pytest tests/test_marquez_integration.py -v -s
Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ services:
1717 - POSTGRES_PASSWORD=marquez
1818
1919 # Uncomment to run the Marquez web UI locally
20- # web:
21- # image: marquezproject/marquez-web:latest
22- # platform: linux/amd64
23- # ports:
24- # - "3000:3000"
25- # depends_on:
26- # - marquez
27- # environment:
28- # - MARQUEZ_HOST=marquez
29- # - MARQUEZ_PORT=5000
30- # - WEB_PORT=3000
20+ web :
21+ image : marquezproject/marquez-web:latest
22+ platform : linux/amd64
23+ ports :
24+ - " 3000:3000"
25+ depends_on :
26+ - marquez
27+ environment :
28+ - MARQUEZ_HOST=marquez
29+ - MARQUEZ_PORT=5000
30+ - WEB_PORT=3000
3131
3232 db :
3333 image : postgres:14
Original file line number Diff line number Diff line change 22from __future__ import annotations
33
44import os
5- import sys
65import tempfile
76import shutil
87import pytest
98from unittest .mock import MagicMock , patch
109
11- # Add sqlmesh to path for tests
12- sys .path .insert (0 , "/Users/nico/Code/sqlmesh" )
13-
1410
1511class TestOpenLineageIntegration :
1612 """Integration tests for OpenLineage event emission."""
Original file line number Diff line number Diff line change 22from __future__ import annotations
33
44import os
5- import sys
65import time
76import tempfile
87import shutil
9- import subprocess
108import pytest
119import requests
1210
13- # Add sqlmesh to path for tests
14- sys .path .insert (0 , "/Users/nico/Code/sqlmesh" )
15-
1611MARQUEZ_API_URL = "http://localhost:5001"
1712MARQUEZ_LINEAGE_URL = "http://localhost:5001"
1813NAMESPACE = "sqlmesh_test"
You can’t perform that action at this time.
0 commit comments