Skip to content

Commit 15f8358

Browse files
committed
Remove test prints, bump python version
1 parent aebf474 commit 15f8358

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ omit = */old tests*
66
*/tests/*
77
*BatterystatsParser*
88
*/python3.6/*
9+
*/python3.13/*
910
*/pytest-*
1011
*/.venv/*
1112

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- "3.6"
3+
- "3.13"
44
before_script:
55
install:
66
- pip install pytest

examples/android/Scripts/interaction.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ def main(device: Device, *args: tuple, **kwargs: dict):
1313

1414
LOGGER.debug(device.current_activity())
1515
LOGGER.debug(current_run)
16-
17-
print(device.current_activity())
18-
print(current_run)

tests/unit/test_experiment.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -974,10 +974,6 @@ def test_run(self, before_run, after_launch, start_profiling, interaction, stop_
974974
call.stop_profiling_managed(mock_device, path, run, **kwargs),
975975
call.before_close_managed(mock_device, path, run, **kwargs),
976976
call.after_run_managed(mock_device, path, run, **kwargs)]
977-
978-
from pprint import pprint
979-
pprint(mock_manager.mock_calls)
980-
pprint(expected_calls)
981977
assert mock_manager.mock_calls == expected_calls
982978

983979
@patch('AndroidRunner.WebExperiment.WebExperiment.after_run')

0 commit comments

Comments
 (0)