Author: Greg Price <[email protected]> Branch: Changeset: r62770:fceab4c8f86f Date: 2013-03-25 16:44 -0700 http://bitbucket.org/pypy/pypy/changeset/fceab4c8f86f/
Log: Configure Tddium diff --git a/.tddium.requirements.txt b/.tddium.requirements.txt new file mode 100644 --- /dev/null +++ b/.tddium.requirements.txt @@ -0,0 +1,1 @@ +pytest diff --git a/tddium.yml b/tddium.yml new file mode 100644 --- /dev/null +++ b/tddium.yml @@ -0,0 +1,20 @@ +tddium: + timeout: 1800 + python: + python_version: 2.7 + pip_requirements_file: .tddium.requirements.txt # will go away soon + tests: + - type: pytest + mode: parallel + files: + - pypy/**/test_*.py + - rpython/**/test_*.py + - exclude: pypy/module/test_lib_pypy/ctypes_tests/** # don't run in CPython + - exclude: rpython/jit/backend/cli/** # bitrotted AFAICT + - exclude: rpython/jit/backend/llvm/** # bitrotted AFAICT + # and things requiring a fix in Tddium, omitted to avoid confusion: + - exclude: pypy/tool/pytest/** # we're running upstream pytest + - exclude: rpython/rlib/unicodedata/test/test_ucd.py # need wide build + - exclude: rpython/rlib/test/test_runicode.py # need wide build + - exclude: rpython/rlib/test/test_rsocket.py # not clear why fails + - exclude: pypy/module/cpyext/test/** # multiple failures due to truncated files; not clear why _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
