Skip to content

Commit

Permalink
Merge pull request #41 from appukuttan-shailesh/master
Browse files Browse the repository at this point in the history
Fix missing password parameter, update to 0.5.3
  • Loading branch information
appukuttan-shailesh authored Feb 21, 2019
2 parents 3670e1a + 975a95d commit cf7fe9d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.4'
version = u'0.5'
# The full version, including alpha/beta/rc tags.
release = u'0.4.0'
release = u'0.5.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion hbp_validation_framework/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def prepare_run_test_offline(username="", password=None, environment="production
if client_obj:
test_library = TestLibrary.from_existing(client_obj)
else:
test_library = TestLibrary(username, environment=environment)
test_library = TestLibrary(username, password, environment=environment)

if test_instance_id == "" and test_id == "" and test_alias == "":
raise Exception("test_instance_id or test_id or test_alias needs to be provided for finding test.")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def package_files(base_dir, directory):

setup(
name='hbp_validation_framework',
version='0.5.2',
version='0.5.3',
packages=['hbp_validation_framework'],
package_data={'': json_files},
url='https://github.com/HumanBrainProject/hbp-validation-client',
Expand Down

0 comments on commit cf7fe9d

Please sign in to comment.