
* improve client state * no comma * update python for unit tests * overwrite it for windows * bump other python versions
41 lines
1011 B
YAML
41 lines
1011 B
YAML
name: integration-node-latest
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
TELEMETRY_ENABLED: false
|
|
REFLEX_USE_SYSTEM_NODE: true
|
|
|
|
jobs:
|
|
check_latest_node:
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.12.8"]
|
|
split_index: [1, 2]
|
|
node-version: ["node"]
|
|
fail-fast: false
|
|
|
|
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
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: |
|
|
poetry run uv pip install pyvirtualdisplay pillow pytest-split
|
|
poetry run playwright install --with-deps
|
|
- run: |
|
|
poetry run pytest tests/test_node_version.py
|
|
poetry run pytest tests/integration --splits 2 --group ${{matrix.split_index}}
|