Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -1249,8 +1249,7 @@ def setup(self, **kwargs):
),
Test(
command=[
android_py, "test", "--managed", "maxVersion", "-v", "--",
"--slow-ci", "--single-process", "--no-randomize",
android_py, "test", "--managed", "maxVersion", "-v", "--slow-ci"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You don't need -- separator anymore?

Copy link
Member Author

@mhsmith mhsmith Oct 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's right: we added --fast-ci and --slow-ci as options for the outer script, so it knows to add the Python interpreter options:

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh ok, I just wanted to double check.

],
timeout=step_timeout(self.test_timeout),
),
Expand Down