From 299af61561714dbe353f1b18932a4834e813fc77 Mon Sep 17 00:00:00 2001 From: Joanna Ko Date: Wed, 16 Jul 2025 14:06:45 -0700 Subject: [PATCH 1/3] add install pkg command for jobs --- .github/actions/lint_n_test/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/lint_n_test/action.yml b/.github/actions/lint_n_test/action.yml index a9b1c33..b1e86b5 100644 --- a/.github/actions/lint_n_test/action.yml +++ b/.github/actions/lint_n_test/action.yml @@ -39,6 +39,9 @@ runs: - name: PyDocStyle run: python -m pydocstyle shell: bash + - name: Install local ${{ inputs.input_pkg_name }} pkg in editable mode + run: python -m pip install -e ${{ inputs.input_pkg_name }} + shell: bash - name: Execute Unit Tests run: python -m unittest discover -s ./test* shell: bash From ab7c70bde502f70fe82f38685d364f3e73608336 Mon Sep 17 00:00:00 2001 From: Joanna Ko Date: Wed, 16 Jul 2025 14:10:52 -0700 Subject: [PATCH 2/3] bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6d43714..9823d43 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name='wavefront-sdk-python', - version='2.1.1', # Please update with each pull request. + version='2.1.2', # Please update with each pull request. author='VMware Aria Operations for Applications Team', url='https://github.com/wavefrontHQ/wavefront-sdk-python', license='Apache-2.0', From 7375974cef9708b6a765f1975e4dbc98334a87a9 Mon Sep 17 00:00:00 2001 From: Joanna Ko Date: Wed, 16 Jul 2025 14:32:55 -0700 Subject: [PATCH 3/3] fix install pkg command --- .github/actions/lint_n_test/action.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/lint_n_test/action.yml b/.github/actions/lint_n_test/action.yml index b1e86b5..c2ac956 100644 --- a/.github/actions/lint_n_test/action.yml +++ b/.github/actions/lint_n_test/action.yml @@ -40,7 +40,7 @@ runs: run: python -m pydocstyle shell: bash - name: Install local ${{ inputs.input_pkg_name }} pkg in editable mode - run: python -m pip install -e ${{ inputs.input_pkg_name }} + run: python -m pip install -e ./ shell: bash - name: Execute Unit Tests run: python -m unittest discover -s ./test* diff --git a/setup.py b/setup.py index 9823d43..c33253e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name='wavefront-sdk-python', - version='2.1.2', # Please update with each pull request. + version='2.1.3', # Please update with each pull request. author='VMware Aria Operations for Applications Team', url='https://github.com/wavefrontHQ/wavefront-sdk-python', license='Apache-2.0',