[pypy-commit] pypy default: Only run those tests with -A

fijal noreply at buildbot.pypy.org
Wed Apr 3 08:17:36 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r62934:9775f9f216ea
Date: 2013-04-03 08:16 +0200
http://bitbucket.org/pypy/pypy/changeset/9775f9f216ea/

Log:	Only run those tests with -A

diff --git a/pypy/module/test_lib_pypy/cffi_tests/conftest.py b/pypy/module/test_lib_pypy/cffi_tests/conftest.py
new file mode 100644
--- /dev/null
+++ b/pypy/module/test_lib_pypy/cffi_tests/conftest.py
@@ -0,0 +1,6 @@
+
+def pytest_ignore_collect(path, config):
+    if config.option.runappdirect:
+        return False
+    # only run if -A is specified
+    return True


More information about the pypy-commit mailing list