-
Hi,
What did I miss? Python-check.yml tox.ini |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @hbaniecki, I think this is expected behavior. Here's how tox-gh-actions understand your configuration.
py36 test environment doesn't satisfy requirements as it doesn't have a platform factor like linux. To fix your problem, I'd suggest to update
Furthermore, if you don't need to write platform specific configurations in
|
Beta Was this translation helpful? Give feedback.
Hi @hbaniecki, I think this is expected behavior. Here's how tox-gh-actions understand your configuration.
tox.ini
defines the following 5 test environments:You can check this by running
tox -a
Python-check.yml
generates 9 tests configurations:py36 test environment doesn't satisfy requirements as it doesn't have a platform factor like linux.
To fix your problem, I'd suggest to update
tox.ini
toFurthermore, if you don't need to write platform specific configurations in
tox.ini
. You can drop configuration for plat…