File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 49
49
- name : Run unit tests with coverage
50
50
run : |
51
51
python -m pip install coverage
52
+ python -m pip install -r utest/requirements.txt
52
53
python -m coverage run --branch utest/run.py -v
53
54
54
55
- name : Prepare HTML/XML coverage report
@@ -103,6 +104,7 @@ jobs:
103
104
- name : Run unit tests
104
105
run : |
105
106
${{ matrix.set_codepage }}
107
+ jython/bin/jython -m pip install -r utest/requirements.txt
106
108
jython/bin/jython utest/run.py -v
107
109
108
110
test_using_ironpython :
@@ -126,4 +128,5 @@ jobs:
126
128
- name : Run unit tests
127
129
run : |
128
130
chcp 850
131
+ ipy -m pip install -r utest/requirements.txt
129
132
ipy utest/run.py -v
Original file line number Diff line number Diff line change
1
+ # External Python modules required by unit tests.
2
+
3
+ enum34 ; python_version < '3.0'
You can’t perform that action at this time.
0 commit comments