Skip to content

Add backend flag to keep alive #530

Add backend flag to keep alive

Add backend flag to keep alive #530

name: Test Integration
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
test_type:
- "with_server_options"
- "not with_server_options"
os:
- ubuntu-latest
jupyterhub:
- "jupyterhub>=4.1"
- "git+https://github.com/jupyterhub/jupyterhub.git@f9fb650a7b1cfbc5306cb674ec3038f1801f4e17"
steps:
- uses: actions/checkout@v4.1.1
- name: Setup Python
uses: mamba-org/setup-micromamba@v1.8.1
with:
environment-file: environment-dev.yml
create-args: >-
python=${{ matrix.python-version }}
-c conda-forge
- name: Install JHub Apps
run: |
pip install .
- name: Install JupyterHub
run: |
pip install ${{ matrix.jupyterhub }}
- name: Install chp
run: npm install -g configurable-http-proxy
- name: conda list
run: conda list
- name: pip freeze
run: pip freeze
- name: Add server options if with server types
if: matrix.test_type == 'with_server_options'
run: |
cat jupyter_config_profile_list >> jupyterhub_config.py
cat jupyterhub_config.py
- name: Start JupyterHub on Ubuntu
run: |
nohup jupyterhub -f jupyterhub_config.py > jupyterhub-logs.txt 2>&1 &
# Give it some to time to start properly
sleep 10
cat jupyterhub-logs.txt
curl http://127.0.0.1:8000/services/japps/
cat jupyterhub-logs.txt
- name: Install Playwright
run: |
pip install pytest-playwright
- name: Install Playwright Browser
run: |
playwright install
- name: Run Tests
run: |
pytest jhub_apps/tests_e2e/ -vvv -m "${{ matrix.test_type }}"
- name: Create artifact name
id: artifact-name
run: |
if [ "${{ matrix.jupyterhub }}" = "jupyterhub>=4.1" ]; then
jhub_suffix="4x"
else
jhub_suffix="5x"
fi
echo "playwright-artifact-name=${{ matrix.test_type }}-$jhub_suffix-playwright-videos" >> "$GITHUB_OUTPUT"
echo "jhub-logs-artifact-name=${{ matrix.test_type }}-$jhub_suffix-jupyterhub-logs" >> "$GITHUB_OUTPUT"
- name: Upload Playwright Videos
if: always()
uses: actions/upload-artifact@v4.3.0
with:
name: ${{ steps.artifact-name.outputs.playwright-artifact-name }}
path: videos
- name: Upload JupyterHub logs
if: always()
uses: actions/upload-artifact@v4.3.0
with:
name: ${{ steps.artifact-name.outputs.jhub-logs-artifact-name }}
path: jupyterhub-logs.txt
- name: JupyterHub logs
if: always()
run: cat jupyterhub-logs.txt