Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm
pip install "pytest<9"
pip install pytest
- uses: actions/download-artifact@v4
with:
name: dist
Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
INSTALL_TYPE = "editable" if apipkg.__file__ == LOCAL_APIPKG else "full"


def pytest_report_header(startdir):
def pytest_report_header():
return "apipkg {install_type} install version={version}".format(
install_type=INSTALL_TYPE, version=apipkg.__version__
)