Projet de remplacement du "RPiPasserelle" d'Otec.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tox.ini 1.1KB

123456789101112131415161718192021222324252627282930313233343536
  1. # this file is *not* meant to cover or endorse the use of tox or pytest or
  2. # testing in general,
  3. #
  4. # It's meant to show the use of:
  5. #
  6. # - check-manifest
  7. # confirm items checked into vcs are in your sdist
  8. # - python setup.py check
  9. # confirm required package meta-data in setup.py
  10. # - readme_renderer (when using a ReStructuredText README)
  11. # confirms your long_description will render correctly on PyPI.
  12. #
  13. # and also to help confirm pull requests to this project.
  14. [tox]
  15. envlist = py{35,36,37,38}
  16. # Define the minimal tox version required to run;
  17. # if the host tox is less than this the tool with create an environment and
  18. # provision it with a tox that satisfies it under provision_tox_env.
  19. # At least this version is needed for PEP 517/518 support.
  20. minversion = 3.3.0
  21. # Activate isolated build environment. tox will use a virtual environment
  22. # to build a source distribution from the source tree. For build tools and
  23. # arguments use the pyproject.toml file as specified in PEP-517 and PEP-518.
  24. isolated_build = true
  25. [testenv]
  26. deps =
  27. pytest >= 5.4.3
  28. commands =
  29. [flake8]
  30. exclude = .tox,*.egg,build,data
  31. select = E,W,F