We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f503dde commit 176c9f0Copy full SHA for 176c9f0
.github/workflows/test.yaml
@@ -160,7 +160,9 @@ jobs:
160
161
- name: Run tests
162
run: |
163
- pytest
+ mkdir build
164
+ cd build
165
+ pytest -vv ../tests -c ../pyproject.toml
166
167
- name: Upload test reports
168
if: always()
pyproject.toml
@@ -182,7 +182,6 @@ src = "labextension/package.json"
182
183
[tool.pytest.ini_options]
184
cache_dir = "build/.cache/pytest"
185
-testpaths = ["tests"]
186
addopts = [
187
"-vv",
188
"--cov=jupyter_server_proxy",
0 commit comments