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.

26 Zeilen
429 B

  1. [tox]
  2. envlist = py27, py34, py35, py36, py37, 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. pypy = pypy
  11. pypy3 = pypy3
  12. [testenv]
  13. whitelist_externals = git
  14. deps =
  15. -rtest-requirements.txt
  16. # to always force recreation and avoid unexpected side effects
  17. recreate=True
  18. commands=
  19. git submodule sync -q
  20. git submodule update --init
  21. python -m tests {posargs}