GitHub Actions in these repos run the pynntp tests against an INN2 server to ensure compatibility. pypnp does not ship with its tests so this currently requires:
- uses: actions/checkout@v4
with:
repository: greenbender/pynntp
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install --upgrade pip
- run: pip install pytest
- run: pip install --editable .
- run: pytest
Would it be possible to create a pip install "pynntp[tests]" option that would shorten this to:
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install --upgrade pip
- run: pip install "pynntp[tests]" pytest
- run: pytest
GitHub Actions in these repos run the
pynntptests against an INN2 server to ensure compatibility.pypnpdoes not ship with its tests so this currently requires:Would it be possible to create a
pip install "pynntp[tests]"option that would shorten this to: