Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies to allow latest OVOS packages #201

Merged
merged 4 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
run: |
pytest tests/unit_tests.py --doctest-modules --junitxml=tests/unit-test-results.xml
- name: Upload Unit test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: unit-test-results
name: unit-test-results-${{ matrix.python-version }}
path: tests/unit-test-results.xml
- name: Test API Methods
run: |
pytest tests/api_method_tests.py --doctest-modules --junitxml=tests/api-method-test-results.xml
- name: Upload API Method test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: api-method-test-results
name: api-method-test-results-${{ matrix.python-version }}
path: tests/api-method-test-results.xml
6 changes: 3 additions & 3 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ovos-dinkum-listener==0.0.3a16
ovos-bus-client~=0.0.3
ovos-bus-client~=0.0,>=0.0.3
ovos-utils~=0.0,>=0.0.30
ovos-plugin-manager~=0.0.23
ovos-plugin-manager~=0.0,>=0.0.23
click~=8.0
click-default-group~=1.2
neon-utils[network,audio]~=1.9
ovos-config~=0.0.7
ovos-config~=0.0,>=0.0.7

ovos-vad-plugin-webrtcvad~=0.0.1
ovos-ww-plugin-vosk~=0.1
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_ovos_plugin_compat(self):
"ovos-stt-plugin-server": {"url": "https://0.0.0.0:8080/stt"}}
)
self.assertIsInstance(non_streaming, STT)
self.assertEqual(non_streaming.url, "https://0.0.0.0:8080/stt")
self.assertEqual(non_streaming.config['url'], "https://0.0.0.0:8080/stt")


class ServiceTests(unittest.TestCase):
Expand Down
Loading