File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -160,9 +160,13 @@ jobs:
160160
161161 - name : Run tests
162162 run : |
163+ # we have installed a pre-built wheel and configured code coverage to
164+ # inspect "jupyter_server_proxy", by re-locating to another directory,
165+ # there is no confusion about "jupyter_server_proxy" referring to our
166+ # installed package rather than the local directory
163167 mkdir build
164168 cd build
165- pytest -vv ../tests - c ../pyproject.toml
169+ pytest -c ../pyproject.toml
166170
167171 - name : Upload test reports
168172 if : always()
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ src = "labextension/package.json"
182182
183183[tool .pytest .ini_options ]
184184cache_dir = " build/.cache/pytest"
185+ testpaths = [" tests" ]
185186addopts = [
186187 " -vv" ,
187188 " --cov=jupyter_server_proxy" ,
You can’t perform that action at this time.
0 commit comments