-
I am trying to get this to work for one of my project where I am using My tox configuration looks like this:
I have copy/pasted your workflow (simply removed python 3.5), but only the Any workaround? My project is at https://github.com/Holt59/minilp/tree/packaging. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@Holt59 thanks for reporting the issue. It seems there's a misconfiguration in your Here's what I find out. I cloned your repository, checked out I checked the tox's documentation and found
I made the following change and it seems to have fixed the problem. index 6d4a94a..ea80b52 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -21,7 +21,7 @@ ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
-[tox]
+[tox:tox]
envlist = py35,py36,py37,py36-lint
[gh-actions] |
Beta Was this translation helpful? Give feedback.
-
@ymyzk Thanks for the information. After updating my |
Beta Was this translation helpful? Give feedback.
@Holt59 thanks for reporting the issue. It seems there's a misconfiguration in your
setup.cfg
.Here's what I find out. I cloned your repository, checked out
packaging
branch and runtox
command locally. Onlypy36-lint
env was executed. Also,tox -l
(show a list of testing) failed.I checked the tox's documentation and found
I made the following change and it seems to have fixed the problem.