Skip to content

Commit 8d8b0eb

Browse files
committed
Fix malformed test command
1 parent 2d5d5f8 commit 8d8b0eb

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
--cov=src/ \
137137
--cov=tests \
138138
--cov-report=xml \
139-
tests/mock_vws/${{ matrix.ci_pattern }}
139+
${{ matrix.ci_pattern }}
140140
141141
- name: "Show coverage file"
142142
run: |

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ This requires Python 3.11+.
2222
.. code-block:: python
2323
2424
import requests
25-
from mock_vws import MockVWS, VuforiaDatabase
25+
from mock_vws import MockVWS
26+
from mock_vws.database import VuforiaDatabase
2627
2728
with MockVWS() as mock:
2829
database = VuforiaDatabase()

0 commit comments

Comments
 (0)