File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,23 +24,23 @@ jobs:
2424 - name : Install dependencies
2525 run : |
2626 uv venv
27- uv pip install "git+https://github.com/fsecada01/component-framework.git"
2827 uv pip install -e ".[dev]"
28+ echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
2929
3030 - name : Install Playwright browsers
31- run : uv run playwright install chromium --with-deps
31+ run : playwright install chromium --with-deps
3232
3333 - name : Lint
34- run : uv run ruff check src tests
34+ run : ruff check src tests
3535
3636 - name : Format check
37- run : uv run ruff format --check src tests
37+ run : ruff format --check src tests
3838
3939 - name : Unit tests
40- run : uv run pytest tests/unit/ -q --tb=short
40+ run : pytest tests/unit/ -q --tb=short
4141
4242 - name : Integration tests
43- run : uv run pytest tests/integration/ -q --tb=short
43+ run : pytest tests/integration/ -q --tb=short
4444
4545 - name : E2E tests
46- run : uv run pytest tests/e2e/ -q --tb=short --browser chromium
46+ run : pytest tests/e2e/ -q --tb=short --browser chromium
Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ testpaths = ["tests"]
7070pythonpath = [" src" ]
7171asyncio_mode = " auto"
7272
73+ [tool .uv .sources ]
74+ component-framework = { git = " https://github.com/fsecada01/component-framework.git" }
75+
7376[tool .ruff ]
7477line-length = 100
7578target-version = " py311"
You can’t perform that action at this time.
0 commit comments