Commit 76450d7
Correctly loading the methods from relatively imported classes (#364)
* Bump the pip-dependencies group with 2 updates (#358)
Bumps the pip-dependencies group with 2 updates: [importlib-metadata](https://github.com/python/importlib_metadata) and [setuptools](https://github.com/pypa/setuptools).
Updates `importlib-metadata` from 7.1.0 to 7.2.1
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v7.1.0...v7.2.1)
Updates `setuptools` from 70.0.0 to 70.1.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v70.0.0...v70.1.0)
---
updated-dependencies:
- dependency-name: importlib-metadata
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: pip-dependencies
- dependency-name: setuptools
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: pip-dependencies
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Bump the pip-dependencies group across 1 directory with 3 updates (#362)
Bumps the pip-dependencies group with 3 updates in the / directory: [debugpy](https://github.com/microsoft/debugpy), [importlib-metadata](https://github.com/python/importlib_metadata) and [setuptools](https://github.com/pypa/setuptools).
Updates `debugpy` from 1.8.1 to 1.8.2
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.1...v1.8.2)
Updates `importlib-metadata` from 7.2.1 to 8.0.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v7.2.1...v8.0.0)
Updates `setuptools` from 70.1.0 to 70.1.1
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v70.1.0...v70.1.1)
---
updated-dependencies:
- dependency-name: debugpy
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: pip-dependencies
- dependency-name: importlib-metadata
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: pip-dependencies
- dependency-name: setuptools
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: pip-dependencies
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Support for relative imports to reuse step impls
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Update release dependencies
Signed-off-by: BugDiver <[email protected]>
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Correctly loading the methods from relatively imported classs (addition to #360)
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Update getgauge/impl_loader.py
Correctly loading the methods from relatively imported classes (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
Co-authored-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Returning method_list in update_step_resgistry_with_class method (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Adding test class for relative import unittest (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Adding unittest for relative import (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Renaming method to update_step_registry_with_class (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Updating unittest for impl loader (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
* Bumping up python package version (#365)
Signed-off-by: Kunal Vishwasrao <[email protected]>
---------
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Kunal Vishwasrao <[email protected]>
Signed-off-by: BugDiver <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Vinay Shukla <[email protected]>
Co-authored-by: Zabil Cheriya Maliackal <[email protected]>1 parent aca13b1 commit 76450d7
File tree
5 files changed
+52
-5
lines changed- getgauge
- test_relative_import
- tests
5 files changed
+52
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
94 | | - | |
| 94 | + | |
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
98 | 98 | | |
99 | | - | |
100 | | - | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
101 | 104 | | |
102 | 105 | | |
103 | 106 | | |
104 | | - | |
| 107 | + | |
105 | 108 | | |
106 | 109 | | |
107 | 110 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
Whitespace-only changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
0 commit comments