1

I am working on a fix for tox warnings in my builds: "WARNING: test command found but not installed in testenv"

NOTE: This is a related question but without explanation: Tox WARNING:test command found but not installed in testenv

When I change my tox.ini from [testenv] to [env] the commands run fine without warnings.

I could not find any documentation on [env] vs. [testenv]. Is it that somehow my environment is called ENV vs. TESTENV or am I using the wrapper\parent environment when I specify [env] or ??

Thanks for the help.

Patrick
  • 2,044
  • 1
  • 25
  • 44

1 Answers1

3

tox knows nothing about [env]. Change from [testenv] to [env] and tox ignores unknown section so the commands are simply not run.

phd
  • 82,685
  • 13
  • 120
  • 165