This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

28 Zeilen
463 B

  1. [tox]
  2. envlist = py27, py34, py35, py36, py37, py38, py39, pypy, pypy3
  3. skip_missing_interpreters=true
  4. [travis]
  5. 2.7 = py27
  6. 3.4 = py34
  7. 3.5 = py35
  8. 3.6 = py36
  9. 3.7 = py37
  10. 3.8 = py38
  11. 3.9 = py39
  12. pypy = pypy
  13. pypy3 = pypy3
  14. [testenv]
  15. whitelist_externals = git
  16. deps =
  17. -rtest-requirements.txt
  18. # to always force recreation and avoid unexpected side effects
  19. recreate=True
  20. commands=
  21. git submodule sync -q
  22. git submodule update --init
  23. python -m tests {posargs}