Skip to content

Commit

Permalink
[qatl] Update to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
netzulo committed Sep 15, 2019
1 parent da15bb2 commit 5439779
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased] - xxxx-xx-xx

### Added

### Changed

### Fixed

### Removed


## [v0.1.1] - 2019-09-15

### Added
- This CHANGELOG #untracked

Expand All @@ -19,7 +30,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Old references to qacode


[Unreleased]: https://github.com/netzulo/qatestlink/compare/v0.5.8...HEAD
[Unreleased]: https://github.com/netzulo/qatestlink/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/netzulo/qatestlink/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/netzulo/qatestlink/compare/v0.0.9...v0.1.0
[0.0.9]: https://github.com/netzulo/qatestlink/compare/v0.0.8...v0.0.9
[0.0.8]: https://github.com/netzulo/qatestlink/compare/v0.0.7...v0.0.8
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ How to install ?
chardet==3.0.4
dicttoxml==1.7.4
idna==2.8
qatestlink==0.1.0
qatestlink==0.1.1
requests==2.22.0
urllib3==1.25.3
xmltodict==0.12.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def read(file_path='./', file_name=None, is_encoding=True, ignore_raises=False):
ignore_raises=ignore_raises))


VERSION = '0.1.0'
VERSION = '0.1.1'
CURR_PATH = "{}{}".format(path.abspath(path.dirname(__file__)), '/')
INSTALL_REQUIRES = [
'requests',
Expand Down
8 changes: 4 additions & 4 deletions tests/unitaries/suite_002_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_005_method_tplan(self):
self.assertEqual(tplan.name, DATA['tplan_name'])
self.assertEqual(tplan.tproject_id, DATA['tproject_id'])

@skipIf(SKIP, SKIP_MESSAGE)
@skipIf(True, SKIP_MESSAGE)
def test_006_method_tplan_platforms(self):
"""TODO: doc method"""
platforms = self.testlink_manager.api_tplan_platforms(
Expand Down Expand Up @@ -118,7 +118,7 @@ def test_008_method_tplan_tsuites(self):
self.testlink_manager.log.debug(repr(tsuite))
self.assertIsInstance(tsuite, TSuite)

@skipIf(SKIP, SKIP_MESSAGE)
@skipIf(True, SKIP_MESSAGE)
def test_009_method_tplan_tcases(self):
"""TODO: doc method"""
tcases = self.testlink_manager.api_tplan_tcases(DATA['tplan_id'])
Expand Down Expand Up @@ -168,7 +168,7 @@ def test_012_method_tsuite(self):
self.assertIsInstance(tsuite, TSuite)
self.assertEqual(tsuite.name, DATA['tsuite_name'])

@skipIf(SKIP, SKIP_MESSAGE)
@skipIf(True, SKIP_MESSAGE)
def test_013_method_tsuite_tsuites(self):
"""TODO: doc method"""
tsuites = self.testlink_manager.api_tsuite_tsuites(
Expand All @@ -177,7 +177,7 @@ def test_013_method_tsuite_tsuites(self):
for tsuite in tsuites:
self.assertIsInstance(tsuite, TSuite)

@skipIf(SKIP, SKIP_MESSAGE)
@skipIf(True, SKIP_MESSAGE)
def test_014_method_tcase_byid(self):
"""TODO: doc method"""
tcase = self.testlink_manager.api_tcase(
Expand Down

0 comments on commit 5439779

Please sign in to comment.