[pypy-commit] pypy py3.5: Skip the micronumpy tests on py3.5. Micronumpy is anyway not compiled

arigo pypy.commits at gmail.com
Wed Sep 14 11:45:50 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r87109:b093c8afa8ce
Date: 2016-09-14 17:45 +0200
http://bitbucket.org/pypy/pypy/changeset/b093c8afa8ce/

Log:	Skip the micronumpy tests on py3.5. Micronumpy is anyway not
	compiled into a default pypy-c in this branch.

diff --git a/pypy/module/micronumpy/test/conftest.py b/pypy/module/micronumpy/test/conftest.py
new file mode 100644
--- /dev/null
+++ b/pypy/module/micronumpy/test/conftest.py
@@ -0,0 +1,5 @@
+import py
+
+def pytest_collect_directory(path, parent):
+    py.test.skip("micronumpy tests skipped for now on py3.5")
+pytest_collect_file = pytest_collect_directory


More information about the pypy-commit mailing list