From 341cc80895d1dc57406f6ea0ce56e725b9daf43e Mon Sep 17 00:00:00 2001 From: Corefinder89 Date: Sat, 27 Oct 2018 16:23:39 +0530 Subject: [PATCH 1/4] Modify travis configuration and requirements.txt modified: .travis.yml modified: requirements.txt --- .travis.yml | 5 +++-- requirements.txt | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index da16823..b5d746a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: before_install: sudo apt-get update before_script: - cd TestFunction/UnitTest/ + - cd TestFunction/UnitTest/ + - chmod +x execute.sh script: - python execute.py \ No newline at end of file + ./execute.sh \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index a7c7dfe..dae9204 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,5 +4,6 @@ pylint==1.9.2 pytest==3.8.1 twine==1.11.0 virtualenv==16.0.0 +PyUnitReport wget requests \ No newline at end of file From 2e8d8a8eea41dbb1af4cf2efd33e7f4375c00ab3 Mon Sep 17 00:00:00 2001 From: Corefinder89 Date: Sat, 27 Oct 2018 16:29:40 +0530 Subject: [PATCH 2/4] Modify travis to earlier version modified: .travis.yml --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b5d746a..f89194e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ python: before_install: sudo apt-get update before_script: - - cd TestFunction/UnitTest/ - - chmod +x execute.sh + cd TestFunction/UnitTest/ script: - ./execute.sh \ No newline at end of file + python execute.py \ No newline at end of file From 5cdc5d6f76fcd20af1eb9944eb8be2de6870db28 Mon Sep 17 00:00:00 2001 From: Corefinder89 Date: Tue, 6 Nov 2018 09:14:19 +0530 Subject: [PATCH 3/4] Modify setup.py modified: setup.py --- setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 205db9a..ed7a949 100644 --- a/setup.py +++ b/setup.py @@ -14,8 +14,17 @@ author_email = 'soumyajit.basu62@gmail.com', classifiers = [ 'Intended Audience :: Information Technology', + 'Intended Audience :: Developers', + 'Development Status :: 5 - Production/Stable', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'License :: OSI Approved :: MIT License' + 'Programming Language :: Implementation :: PyPy', + 'License :: OSI Approved :: MIT License', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX', + 'Topic :: Software Development :: Quality Assurance', + 'Topic :: Software Development :: Testing Utilities' ], install_requires = [ 'requests', From 7e0896982edba98fd14215d13dc4f0e6e47dcd01 Mon Sep 17 00:00:00 2001 From: Corefinder89 Date: Sun, 6 Jan 2019 21:25:45 +0530 Subject: [PATCH 4/4] Make changes in the browser controller class modified: browserium/generic_functions/browser_controller.py --- browserium/generic_functions/browser_controller.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/browserium/generic_functions/browser_controller.py b/browserium/generic_functions/browser_controller.py index 3977294..8feac87 100644 --- a/browserium/generic_functions/browser_controller.py +++ b/browserium/generic_functions/browser_controller.py @@ -76,4 +76,8 @@ def apply_fluent_wait(self, driver, fluent_wait_time): ] ) - return wait \ No newline at end of file + return wait + + @classmethod + def tear_browser(self, driver): + driver.quit() \ No newline at end of file