Skip to content

Commit

Permalink
fix #242
Browse files Browse the repository at this point in the history
  • Loading branch information
rafa0128 committed Nov 27, 2023
1 parent 3e07c73 commit dfaa5bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
recursive-include solox/public *.html *.js *.css *.png *.py .json
recursive-include solox/public *.html *.js *.css *.png *.py *.json
recursive-include solox/report *.html *.js *.css *.png *.py *.json *.log
recursive-include solox/static *.html *.js *.css *.png *.py
recursive-include solox/templates *.html *.js *.css *.png *.py
Expand Down
2 changes: 1 addition & 1 deletion solox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from __future__ import absolute_import

__version__ = '2.8.3'
__version__ = '2.8.4'
2 changes: 1 addition & 1 deletion solox/public/apm.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ def __init__(self, pkgName=None, platform=Platform.Android, deviceId=None,
self.record = record
self.collect_all = collect_all
d.devicesCheck(platform=self.platform, deviceid=self.deviceId, pkgname=self.pkgName)
self.start()

def collectCpu(self):
_cpu = CPU(self.pkgName, self.deviceId, self.platform, pid=self.pid)
Expand Down Expand Up @@ -589,7 +590,6 @@ def setPerfs(self):

def collectAll(self):
try:
self.start()
f.clear_file()
process_num = 7 if self.record else 6
pool = multiprocessing.Pool(processes=process_num)
Expand Down

0 comments on commit dfaa5bd

Please sign in to comment.