-
My tox.ini looks like this: [tox]
isolated_build = True
envlist = py38,py39
[testenv]
deps = pytest
commands = pytest Should I run |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I think I can also run |
Beta Was this translation helpful? Give feedback.
-
You don't need to use this plugin for running pytest or tox. This is a helper for running tests in parallel on GitHub Actions using multiple jobs. For a simple configuration like what you shared, you may not get benefit of this library. |
Beta Was this translation helpful? Give feedback.
-
@ymyzk , thanks a lot for your clarification. 🙏 |
Beta Was this translation helpful? Give feedback.
You don't need to use this plugin for running pytest or tox.
This is a helper for running tests in parallel on GitHub Actions using multiple jobs. For a simple configuration like what you shared, you may not get benefit of this library.