File tree 3 files changed +12
-9
lines changed
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 35
35
36
36
jobs :
37
37
PMM_PDPGSQL_TEST :
38
- runs-on : ubuntu-latest
39
- timeout-minutes : 20
38
+ runs-on : ubuntu-20.04
39
+ timeout-minutes : 40
40
40
env :
41
41
ADMIN_PASSWORD : ' admin'
42
42
PDPGSQL_VERSION : ${{ github.event.inputs.pdpgsql_version || '17' }}
69
69
python3 -m venv virtenv
70
70
. virtenv/bin/activate
71
71
pip install --upgrade pip
72
+ pip install --force-reinstall -U setuptools
72
73
pip install -r requirements.txt
73
74
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client-version=${{ env.PMM_CLIENT_VERSION }} --database PDPGSQL=${{ env.PDPGSQL_VERSION }}
74
75
87
88
working-directory : pmm-ui-tests
88
89
run : |
89
90
export PMM_UI_URL="http://127.0.0.1:8081/"
90
- npx codeceptjs run -c pr.codecept.js tests/qa-integration/pmm_pdpgsql_integration_test.js --steps --debug
91
+ npx codeceptjs run -c pr.codecept.js tests/qa-integration/pmm_pdpgsql_integration_test.js
Original file line number Diff line number Diff line change 39
39
40
40
jobs :
41
41
PMM_PXC_TEST :
42
- runs-on : ubuntu-latest
43
- timeout-minutes : 20
42
+ runs-on : ubuntu-20.04
43
+ timeout-minutes : 40
44
44
env :
45
45
ADMIN_PASSWORD : ' admin'
46
46
PXC_VERSION : ${{ github.event.inputs.pxc_version || '8.0' }}
99
99
python3 -m venv virtenv
100
100
. virtenv/bin/activate
101
101
pip install --upgrade pip
102
+ pip install --force-reinstall -U setuptools
102
103
pip install -r requirements.txt
103
104
if [[ "${{ github.event.inputs.pxc_version }}" != http* ]]; then
104
105
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client-version=${{ env.PMM_CLIENT_VERSION }} --database PXC=${{ env.PXC_VERSION }}
@@ -120,6 +121,6 @@ jobs:
120
121
- name : Run the Integration tests of PXC
121
122
run : |
122
123
export PMM_UI_URL="http://127.0.0.1:8081/"
123
- npx codeceptjs run -c pr.codecept.js tests/qa-integration/pmm_pxc_integration_test.js --steps --debug
124
+ npx codeceptjs run -c pr.codecept.js tests/qa-integration/pmm_pxc_integration_test.js
124
125
working-directory : pmm-ui-tests
125
126
Original file line number Diff line number Diff line change 37
37
38
38
jobs :
39
39
PMM_PS_TEST :
40
- runs-on : ubuntu-latest
41
- timeout-minutes : 20
40
+ runs-on : ubuntu-20.04
41
+ timeout-minutes : 40
42
42
env :
43
43
ADMIN_PASSWORD : ' admin'
44
44
PS_VERSION : ${{ github.event.inputs.ps_version || '8.0' }}
99
99
python3 -m venv virtenv
100
100
. virtenv/bin/activate
101
101
pip install --upgrade pip
102
+ pip install --force-reinstall -U setuptools
102
103
pip install -r requirements.txt
103
104
if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then
104
105
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client-version=${{ env.PMM_CLIENT_VERSION }} --database PS=${{ env.PS_VERSION }}
@@ -120,5 +121,5 @@ jobs:
120
121
- name : Run the Integration tests of PS
121
122
run : |
122
123
export PMM_UI_URL="http://127.0.0.1:8081/"
123
- npx codeceptjs run -c pr.codecept.js tests/qa-integration/pmm_ps_integration_test.js --steps --debug
124
+ npx codeceptjs run -c pr.codecept.js tests/qa-integration/pmm_ps_integration_test.js
124
125
working-directory : pmm-ui-tests
You can’t perform that action at this time.
0 commit comments