File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ script:
13
13
- flake8 --ignore=E501, W605
14
14
- autopep8 -r . --diff | tee check_autopep8
15
15
- test ! -s check_autopep8
16
- - atcoder-tools gen arc050 --without-login --no_parallel
16
+ - atcoder-tools gen arc050 --without-login
17
17
- nosetests --with-coverage --cover-package=atcodertools
18
18
- codecov
19
19
notifications :
Original file line number Diff line number Diff line change @@ -224,9 +224,9 @@ def main(prog, args):
224
224
get_default_replacement_path ('java' ))
225
225
)
226
226
227
- parser .add_argument ("--no_parallel " ,
227
+ parser .add_argument ("--parallel " ,
228
228
action = "store_true" ,
229
- help = "Prepare problem directories one by one not using multi processors." ,
229
+ help = "Prepare problem directories asynchronously using multi processors." ,
230
230
default = False )
231
231
232
232
parser .add_argument ("--save-no-session-cache" ,
@@ -263,7 +263,7 @@ def main(prog, args):
263
263
args .replacement if args .replacement is not None else get_default_replacement_path (
264
264
args .lang ),
265
265
args .lang ,
266
- not args .no_parallel )
266
+ args .parallel )
267
267
268
268
269
269
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments