diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 89b25fc10..2ca9aed23 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -33,7 +33,7 @@ env: PR_TITLE: ${{ github.event.pull_request.title }} jobs: - example-counter: + example-counter-and-nba-proxy: env: OUTPUT_FILE: import_benchmark.json timeout-minutes: 30 @@ -119,46 +119,6 @@ jobs: --benchmark-json "./reflex-examples/counter/${{ env.OUTPUT_FILE }}" --branch-name "${{ github.head_ref || github.ref_name }}" --pr-id "${{ github.event.pull_request.id }}" --app-name "counter" - - example-nba-proxy: - timeout-minutes: 30 - strategy: - # Prioritize getting more information out of the workflow (even if something fails) - fail-fast: false - matrix: - # Show OS combos first in GUI - os: [ ubuntu-latest, windows-latest ] - python-version: [ "3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1" ] - # Windows is a bit behind on Python version availability in Github - exclude: - - os: windows-latest - python-version: "3.11.11" - - os: windows-latest - python-version: "3.10.16" - - os: windows-latest - python-version: "3.9.21" - include: - - os: windows-latest - python-version: "3.11.9" - - os: windows-latest - python-version: "3.10.11" - - os: windows-latest - python-version: "3.9.13" - - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/setup_build_env - with: - python-version: ${{ matrix.python-version }} - run-poetry-install: true - create-venv-at-path: .venv - - name: Clone Reflex Examples Repo - uses: actions/checkout@v4 - with: - repository: reflex-dev/reflex-examples - ref: elijah/nba-proxy-app - path: reflex-examples - name: Install requirements for nba proxy example working-directory: ./reflex-examples/nba-proxy run: | @@ -179,6 +139,7 @@ jobs: npm -v poetry run bash scripts/integration.sh ./reflex-examples/nba-proxy dev + reflex-web: strategy: fail-fast: false