forked from nebari-dev/jhub-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (68 loc) · 1.94 KB
/
test-integration.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Test Integration
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
test_type:
- tests_e2e
os:
- ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Python
uses: mamba-org/[email protected]
with:
environment-file: environment-dev.yml
create-args: >-
python=${{ matrix.python-version }}
-c conda-forge
- name: Install JHub Apps
run: |
pip install .
- name: Install chp
run: npm install -g configurable-http-proxy
- name: Start JupyterHub on Ubuntu
if: matrix.test_type == 'tests_e2e' && matrix.os == 'ubuntu-latest'
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
if: matrix.test_type == 'tests_e2e'
run: |
pip install pytest-playwright
- name: Install Playwright Browser
if: matrix.test_type == 'tests_e2e'
run: |
playwright install
- name: Run Tests
run: |
pytest jhub_apps/${{ matrix.test_type }} -vvv
- name: Upload Playwright Videos
if: matrix.test_type == 'tests_e2e' && always()
uses: actions/[email protected]
with:
name: ${{ matrix.os }}-playwright-videos
path: videos
- name: Upload JupyterHub logs
if: matrix.test_type == 'tests_e2e' && always()
uses: actions/[email protected]
with:
name: ${{ matrix.os }}-jupyterhub-logs
path: jupyterhub-logs.txt
- name: JupyterHub logs
if: always()
run: cat jupyterhub-logs.txt