4

If I want to install extra requirements for the package being tested with Tox who would I do it?

E.g. If I am testing a package called Websauna and I want to instal

  websauna[test]

Instead of

  websauna
Mikko Ohtamaa
  • 82,057
  • 50
  • 264
  • 435

1 Answers1

4

In tox.ini:

[testenv]
extras = test

Documentation

merwok
  • 6,779
  • 1
  • 28
  • 42