@@ -142,20 +142,24 @@ jobs:
142
142
run : pipenv run pytest -v
143
143
working-directory : ./extra_tests
144
144
- if : runner.os == 'Linux'
145
- name : run cpython tests
146
- run : target/release/rustpython -m test -v
147
- - if : runner.os == 'macOS'
148
- name : run cpython tests (macOS lightweight)
145
+ name : run cpython platform-independent tests
149
146
run :
150
147
target/release/rustpython -m test -v
148
+ test_argparse test_json test_bytes test_long test_unicode test_array
149
+ test_asyncgen test_list test_complex test_json test_set test_dis test_calendar
150
+ - if : runner.os != 'Windows'
151
+ name : run cpython platform-dependent tests
152
+ run : target/release/rustpython -m test -v -x
153
+ test_argparse test_json test_bytes test_long test_unicode test_array
154
+ test_asyncgen test_list test_complex test_json test_set test_dis test_calendar
151
155
- if : runner.os == 'Windows'
152
- name : run cpython tests (windows partial - fixme)
156
+ name : run cpython platform-dependent tests (windows partial - fixme)
153
157
run :
154
158
target/release/rustpython -m test -v -x
155
- test_argparse test_json test_bytes test_long test_pwd test_bool test_cgi test_complex
156
- test_exception_hierarchy test_glob test_iter test_list test_os test_pathlib
157
- test_py_compile test_set test_shutil test_sys test_unicode test_unittest test_venv
158
- test_zipimport test_importlib test_io
159
+ test_argparse test_json test_bytes test_long test_unicode test_array
160
+ test_asyncgen test_list test_complex test_json test_set test_dis test_calendar
161
+ test_pwd test_bool test_cgi test_exception_hierarchy test_glob test_iter test_os test_pathlib
162
+ test_py_compile test_set test_shutil test_sys test_unittest test_venv test_zipimport test_importlib test_io
159
163
- if : runner.os == 'Linux'
160
164
name : check that --install-pip succeeds
161
165
run : |
0 commit comments