diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index f3b4ffca5..4ba0efc14 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9.18, 3.10.13, 3.11.6, 3.12.1, 3.13.0] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] continue-on-error: true runs-on: ubuntu-latest steps: diff --git a/pyproject.toml b/pyproject.toml index bf1718d33..c42599db9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ exclude = [ [tool.poetry.dependencies] python = ">=3.9" unidiff = ">=0.7.4" -pytest = ">=7.0.0,<8.3.4" +pytest = ">=7.0.0,!=8.3.4" gitpython = ">=3.1.31" libcst = ">=1.0.1" jedi = ">=0.19.1" diff --git a/.github/workflows/codeflash-optimize.yaml b/temp/codeflash-optimize.yaml similarity index 100% rename from .github/workflows/codeflash-optimize.yaml rename to temp/codeflash-optimize.yaml diff --git a/.github/workflows/deploy-docs-to-azure.yaml b/temp/deploy-docs-to-azure.yaml similarity index 100% rename from .github/workflows/deploy-docs-to-azure.yaml rename to temp/deploy-docs-to-azure.yaml diff --git a/.github/workflows/end-to-end-test-benchmark-bubblesort.yaml b/temp/end-to-end-test-benchmark-bubblesort.yaml similarity index 100% rename from .github/workflows/end-to-end-test-benchmark-bubblesort.yaml rename to temp/end-to-end-test-benchmark-bubblesort.yaml diff --git a/.github/workflows/end-to-end-test-bubblesort-pytest-no-git.yaml b/temp/end-to-end-test-bubblesort-pytest-no-git.yaml similarity index 100% rename from .github/workflows/end-to-end-test-bubblesort-pytest-no-git.yaml rename to temp/end-to-end-test-bubblesort-pytest-no-git.yaml diff --git a/.github/workflows/end-to-end-test-bubblesort-unittest.yaml b/temp/end-to-end-test-bubblesort-unittest.yaml similarity index 100% rename from .github/workflows/end-to-end-test-bubblesort-unittest.yaml rename to temp/end-to-end-test-bubblesort-unittest.yaml diff --git a/.github/workflows/end-to-end-test-coverage.yaml b/temp/end-to-end-test-coverage.yaml similarity index 100% rename from .github/workflows/end-to-end-test-coverage.yaml rename to temp/end-to-end-test-coverage.yaml diff --git a/.github/workflows/end-to-end-test-futurehouse.yaml b/temp/end-to-end-test-futurehouse.yaml similarity index 100% rename from .github/workflows/end-to-end-test-futurehouse.yaml rename to temp/end-to-end-test-futurehouse.yaml diff --git a/.github/workflows/end-to-end-test-init-optim.yaml b/temp/end-to-end-test-init-optim.yaml similarity index 100% rename from .github/workflows/end-to-end-test-init-optim.yaml rename to temp/end-to-end-test-init-optim.yaml diff --git a/.github/workflows/end-to-end-test-tracer-replay.yaml b/temp/end-to-end-test-tracer-replay.yaml similarity index 100% rename from .github/workflows/end-to-end-test-tracer-replay.yaml rename to temp/end-to-end-test-tracer-replay.yaml diff --git a/.github/workflows/end-to-end-topological-sort-test.yaml b/temp/end-to-end-topological-sort-test.yaml similarity index 100% rename from .github/workflows/end-to-end-topological-sort-test.yaml rename to temp/end-to-end-topological-sort-test.yaml diff --git a/.github/workflows/label-workflow-changes.yml b/temp/label-workflow-changes.yml similarity index 100% rename from .github/workflows/label-workflow-changes.yml rename to temp/label-workflow-changes.yml diff --git a/.github/workflows/mypy.yml b/temp/mypy.yml similarity index 100% rename from .github/workflows/mypy.yml rename to temp/mypy.yml diff --git a/.github/workflows/pr_agent.yml b/temp/pr_agent.yml similarity index 100% rename from .github/workflows/pr_agent.yml rename to temp/pr_agent.yml diff --git a/tests/test_instrument_tests.py b/tests/test_instrument_tests.py index 44661912a..f874c4192 100644 --- a/tests/test_instrument_tests.py +++ b/tests/test_instrument_tests.py @@ -128,7 +128,7 @@ def codeflash_wrap(wrapped, test_module_name, test_class_name, test_name, functi if sys.version_info < (3, 12): expected += """print(f"!######{{test_module_name}}:{{(test_class_name + '.' if test_class_name else '')}}{{test_name}}:{{function_name}}:{{loop_index}}:{{invocation_id}}######!")""" else: - expected += """print(f'!######{{test_module_name}}:{{(test_class_name + '.' if test_class_name else '')}}{{test_name}}:{{function_name}}:{{loop_index}}:{{invocation_id}}######!')""" + expected += """print(f"!######{{test_module_name}}:{{(test_class_name + '.' if test_class_name else '')}}{{test_name}}:{{function_name}}:{{loop_index}}:{{invocation_id}}######!")""" expected += """ exception = None gc.disable()