Skip to content
This repository was archived by the owner on Oct 3, 2018. It is now read-only.
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion benchtester/MarionetteTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import shutil

import mozprofile
from marionette.runtests import MarionetteTestRunner
from marionette_harness.runtests import MarionetteTestRunner


class MarionetteTest(BenchTester.BenchTest):
Expand Down
2 changes: 1 addition & 1 deletion benchtester/test_memory_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os
import sys

from marionette import MarionetteTestCase
from marionette_harness import MarionetteTestCase
from marionette_driver import Actions
from marionette_driver.errors import JavascriptException, ScriptTimeoutException
import mozlog.structured
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
boto==2.39.0
marionette-client==3.1.0
marionette-harness==4.0
mercurial==3.2.4
mozdownload==1.20.2
mozdownload==1.21
MozillaPulse==1.0.1
treeherder-client==3.0.0
treeherder-client==3.1.0
17 changes: 9 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
from setuptools import setup

THIS_DIR = os.path.dirname(os.path.realpath(__name__))


def read(*parts):
with open(os.path.join(THIS_DIR, *parts)) as f:
return f.read()

setup(
name="awsy",
version="0.0.1",
Expand All @@ -17,12 +25,5 @@
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
],
packages=["benchtester"],
install_requires=[
"boto",
"marionette-client",
"mercurial",
"mozdownload",
"MozillaPulse",
"treeherder-client>=3.0.0"
],
install_requires=read('requirements.txt').splitlines(),
)