Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add JetNews to the available workloads #1240

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
workloads: Fixup more pylint warnings for jetnews
- wa/workloads/jetnews/__init__.py:67:31: E211 whitespace before '('
- wa/workloads/jetnews/__init__.py:67:50: E261 at least two spaces before inline comment
luis-machado-arm committed Nov 15, 2023
commit acee286bc60a043a53a86b8701aede27d2a8b178
2 changes: 1 addition & 1 deletion wa/workloads/jetnews/__init__.py
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ def run(self, context):
# Invoke each test one after the other.
# These tests are part of a separate apk that interacts with the main
# JetNews app.
for iteration in range (self.iterations): # pylint: disable=W0612
for iteration in range(self.iterations): # pylint: disable=W0612
for test in self.tests:
command = f'am instrument -w -e class com.arm.test. {test} com.arm.benchmark/androidx.test.runner.AndroidJUnitRunner'
self.target.execute(command)