Opened 9 years ago

Closed 9 years ago

Last modified 9 years ago

#26008 closed Bug (fixed)

setup() missing 1 required positional argument: 'parallel' when running runtest.py --pair or runtests.py --bisect

Reported by: Marten Kenbeek Owned by: nobody
Component: Testing framework Version: 1.9
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Full traceback:

Traceback (most recent call last):
  File "runtests.py", line 445, in <module>
    paired_tests(options.pair, options, options.modules)
  File "runtests.py", line 332, in paired_tests
    state = setup(options.verbosity, test_labels)
TypeError: setup() missing 1 required positional argument: 'parallel'

Change History (3)

comment:1 by Tim Graham, 9 years ago

Component: UncategorizedTesting framework
Triage Stage: UnreviewedAccepted

comment:2 by Attila Tovt <uran198@…>, 9 years ago

Resolution: fixed
Status: newclosed

In 0db6367f:

Fixed #26008 -- Added parallel argument to paired_tests and bisect_tests

comment:3 by Tim Graham <timograham@…>, 9 years ago

In 151027be:

[1.9.x] Fixed #26008 -- Added parallel argument to paired_tests and bisect_tests

Backport of 0db6367fe2aa6ab3fd152eacf172d57db45c1ffb from master

Note: See TracTickets for help on using tickets.
Back to Top