⚡️ Speed up function _is_separating_line by 18% in PR #110 (trace-deterministic)
#365
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: end-to-end-test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| bubble-sort-optimization-pytest-no-git: | |
| runs-on: ubuntu-latest | |
| env: | |
| CODEFLASH_AIS_SERVER: prod | |
| POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }} | |
| CODEFLASH_API_KEY: ${{ secrets.CODEFLASH_API_KEY }} | |
| COLUMNS: 110 | |
| MAX_RETRIES: 3 | |
| RETRY_DELAY: 5 | |
| EXPECTED_IMPROVEMENT_PCT: 300 | |
| CODEFLASH_END_TO_END: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Python 3.11 for CLI | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: 3.11.6 | |
| - name: Install dependencies (CLI) | |
| run: | | |
| uv tool install poetry | |
| uv venv | |
| source .venv/bin/activate | |
| poetry install --with dev | |
| - name: Remove .git | |
| run: | | |
| if [ -d ".git" ]; then | |
| echo ".git directory exists!" | |
| sudo rm -rf .git | |
| if [ -d ".git" ]; then | |
| echo ".git directory still exists after removal attempt!" | |
| exit 1 | |
| else | |
| echo ".git directory successfully removed." | |
| fi | |
| else | |
| echo ".git directory does not exist. Nothing to remove." | |
| exit 1 | |
| fi | |
| - name: Run Codeflash to optimize code | |
| id: optimize_code | |
| run: | | |
| source .venv/bin/activate | |
| poetry run python tests/scripts/end_to_end_test_bubblesort_pytest.py |