Skip to content
Closed
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
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,20 @@ jobs:
path: coverage/coverage.*
if-no-files-found: error

test-pytest-dev:
name: Test with pytest dev version
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ env.PYTHON_LATEST }}
- run: python -m pip install --upgrade pip tox
- run: python -m tox run -e pytest-dev

lint-github-actions:
name: Lint GitHub Actions
permissions:
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ commands = make test
allowlist_externals =
make

[testenv:pytest-dev]
deps = pytest @ https://github.com/pytest-dev/pytest/archive/refs/heads/main.zip
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It may work when using git+https://github.com/pytest-dev/pytest as a url


[testenv:docs]
allowlist_externals =
git
Expand Down
Loading