File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -107,15 +107,15 @@ jobs:
107107 # Run workspace dashboard e2e tests (does not pass with python 3.9
108108 - name : Run dashboard e2e
109109 run : |
110- marimo run --headless dlt/_workspace/helpers/dashboard/dlt_dashboard.py -- -- --pipelines-dir _storage/.dlt/pipelines/ --with_test_identifiers true & pytest --browser chromium tests/e2e
110+ marimo run --headless dlt/_workspace/helpers/dashboard/dlt_dashboard.py -- -- --pipelines-dir _storage/.dlt/pipelines/ --with_test_identifiers true & pytest --browser chromium tests/e2e -k "not test_profiles_e2e"
111111 if : matrix.python-version != '3.9' && matrix.python-version != '3.14.0-beta.4' && matrix.os != 'windows-latest'
112112
113113 # note that this test will pass only when running from cmd shell (_storage\.dlt\pipelines\ must stay)
114114 - name : Run dashboard e2e windows
115115 run : |
116116 start marimo run --headless dlt/_workspace/helpers/dashboard/dlt_dashboard.py -- -- --pipelines-dir _storage\.dlt\pipelines\ --with_test_identifiers true
117117 timeout /t 6 /nobreak
118- pytest --browser chromium tests/e2e
118+ pytest --browser chromium tests/e2e -k "not test_profiles_e2e"
119119 if : matrix.python-version != '3.9' && matrix.python-version != '3.14.0-beta.4' && matrix.os == 'windows-latest'
120120
121121 matrix_job_required_check :
Original file line number Diff line number Diff line change @@ -168,10 +168,10 @@ check-cli-docs:
168168# To run these tests locally, run `make start-dlt-dashboard-e2e` in one terminal and `make test-e2e-dashboard-headed` in another terminal
169169
170170test-e2e-dashboard :
171- uv run pytest --browser chromium tests/e2e
171+ uv run pytest --browser chromium tests/e2e -k " not test_profiles_e2e "
172172
173173test-e2e-dashboard-headed :
174- uv run pytest --headed --browser chromium tests/e2e
174+ uv run pytest --headed --browser chromium tests/e2e -k " not test_profiles_e2e "
175175
176176start-dlt-dashboard-e2e :
177177 uv run marimo run --headless dlt/_workspace/helpers/dashboard/dlt_dashboard.py -- -- --pipelines-dir _storage/.dlt/pipelines --with_test_identifiers true
You can’t perform that action at this time.
0 commit comments