Skip to content

Commit d2982cc

Browse files
committed
bubble sort
1 parent 9e8125c commit d2982cc

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

.github/workflows/end-to-end-test-bubblesort-pytest-no-git.yaml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff 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: |
@@ -53,5 +53,4 @@ jobs:
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

.github/workflows/end-to-end-test-bubblesort-unittest.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)