File tree Expand file tree Collapse file tree 2 files changed +18
-20
lines changed Expand file tree Collapse file tree 2 files changed +18
-20
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ jobs:
2222 fetch-depth : 0
2323 token : ${{ secrets.GITHUB_TOKEN }}
2424
25- - name : Set up Python 3.11 for CLI
26- uses : astral-sh/setup-uv@v5
27- with :
28- python-version : 3.11.6
25+ # - name: Set up Python 3.11 for CLI
26+ # uses: astral-sh/setup-uv@v5
27+ # with:
28+ # python-version: 3.11.6
2929
30- - name : Install dependencies (CLI)
31- run : |
32- uv tool install poetry
33- uv venv
34- source .venv/bin/activate
35- poetry install --with dev
30+ # - name: Install dependencies (CLI)
31+ # run: |
32+ # uv tool install poetry
33+ # uv venv
34+ # source .venv/bin/activate
35+ # poetry install --with dev
3636
3737 - name : Remove .git
3838 run : |
5353 - name : Run Codeflash to optimize code
5454 id : optimize_code
5555 run : |
56- source .venv/bin/activate
57- poetry run python tests/scripts/end_to_end_test_bubblesort_pytest.py
56+ uv run -p 3.11 python tests/scripts/end_to_end_test_bubblesort_pytest.py
Original file line number Diff line number Diff line change @@ -27,15 +27,14 @@ jobs:
2727 with :
2828 python-version : 3.11.6
2929
30- - name : Install dependencies (CLI)
31- run : |
32- uv tool install poetry
33- uv venv
34- source .venv/bin/activate
35- poetry install --with dev
30+ # - name: Install dependencies (CLI)
31+ # run: |
32+ # uv tool install poetry
33+ # uv venv
34+ # source .venv/bin/activate
35+ # poetry install --with dev
3636
3737 - name : Run Codeflash to optimize code
3838 id : optimize_code
3939 run : |
40- source .venv/bin/activate
41- poetry run python tests/scripts/end_to_end_test_bubblesort_unittest.py
40+ uv run -p 3.11 python tests/scripts/end_to_end_test_bubblesort_unittest.py
You can’t perform that action at this time.
0 commit comments