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 c6800c7 commit ca5adbbCopy full SHA for ca5adbb
.github/workflows/pythonapp.yml
@@ -57,7 +57,7 @@ jobs:
57
run: |
58
python -m pip install --upgrade pip
59
pip install -U setuptools setuptools_scm
60
- pip install "pytest<9"
+ pip install pytest
61
- uses: actions/download-artifact@v4
62
with:
63
name: dist
conftest.py
@@ -6,7 +6,7 @@
6
INSTALL_TYPE = "editable" if apipkg.__file__ == LOCAL_APIPKG else "full"
7
8
9
-def pytest_report_header(startdir):
+def pytest_report_header():
10
return "apipkg {install_type} install version={version}".format(
11
install_type=INSTALL_TYPE, version=apipkg.__version__
12
)
0 commit comments