We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d4e55 commit fa7c1baCopy full SHA for fa7c1ba
.github/workflows/tests.yml
@@ -29,10 +29,11 @@ jobs:
29
- name: Install dependencies
30
run: uv sync
31
32
+ - name: Install test dependencies
33
+ run: uv pip install pytest pytest-cov pytest-mock
34
+
35
- name: Run tests
- run: |
- source .venv/bin/activate
- pytest tests/test_variance_and_local_inference.py tests/test_client_resilience.py tests/test_mqtt_client/ -v --cov=src --cov=server_client_light --cov-report=xml
36
+ run: uv run pytest tests/test_variance_and_local_inference.py tests/test_client_resilience.py tests/test_mqtt_client/ -v --cov=src --cov=server_client_light --cov-report=xml
37
38
- name: Upload coverage reports
39
uses: codecov/codecov-action@v3
0 commit comments