File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 25
25
run : .\PCbuild\build.bat -e -p Win32
26
26
- name : Display build info
27
27
run : .\python.bat -m test.pythoninfo
28
+ - name : Install test dependencies
29
+ run : |
30
+ .\python.bat -m ensurepip --user
31
+ .\python.bat -m pip install --user -r Misc/requirements-test.txt
28
32
- name : Tests
29
33
run : .\PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
30
34
37
41
run : .\PCbuild\build.bat -e -p x64
38
42
- name : Display build info
39
43
run : .\python.bat -m test.pythoninfo
44
+ - name : Install test dependencies
45
+ run : |
46
+ .\python.bat -m ensurepip --user
47
+ .\python.bat -m pip install --user -r Misc/requirements-test.txt
40
48
- name : Tests
41
49
run : .\PCbuild\rt.bat -x64 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
42
50
51
59
run : make -j4
52
60
- name : Display build info
53
61
run : make pythoninfo
62
+ - name : Install test dependencies
63
+ run : |
64
+ ./python.exe -m ensurepip --user
65
+ ./python.exe -m pip install --user -r Misc/requirements-test.txt
54
66
- name : Tests
55
67
run : make buildbottest TESTOPTS="-j4 -uall,-cpu"
56
68
78
90
run : make -j4
79
91
- name : Display build info
80
92
run : make pythoninfo
93
+ - name : Install test dependencies
94
+ run : |
95
+ ./python -m ensurepip --user
96
+ ./python -m pip install --user -r Misc/requirements-test.txt
81
97
- name : Tests
82
98
run : xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
Original file line number Diff line number Diff line change 48
48
./python -m venv .venv
49
49
source ./.venv/bin/activate
50
50
python -m pip install -U coverage
51
+ python -m pip install -r Misc/requirements-test.txt
51
52
python -m test.pythoninfo
52
53
- name : ' Tests with coverage'
53
54
run : >
You can’t perform that action at this time.
0 commit comments