[pypy-commit] pypy testing-cleanup: Remove irrelevant test: with -A, all tests are app-level, so the applevel marker is useless

rlamy pypy.commits at gmail.com
Wed Jun 8 19:39:10 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: testing-cleanup
Changeset: r85046:95a6de756261
Date: 2016-06-09 00:38 +0100
http://bitbucket.org/pypy/pypy/changeset/95a6de756261/

Log:	Remove irrelevant test: with -A, all tests are app-level, so the
	applevel marker is useless

diff --git a/pypy/tool/pytest/test/test_conftest1.py b/pypy/tool/pytest/test/test_conftest1.py
--- a/pypy/tool/pytest/test/test_conftest1.py
+++ b/pypy/tool/pytest/test/test_conftest1.py
@@ -20,11 +20,3 @@
         assert not skipped and not failed
         assert "app_test_something" in passed[0].nodeid
         assert "test_method_app" in passed[1].nodeid
-
-    def test_appdirect(self, testdir):
-        sorter = testdir.inline_run(innertest, '-m', 'applevel', '--runappdirect')
-        passed, skipped, failed = sorter.listoutcomes()
-        assert len(passed) == 2
-        print passed
-        assert "app_test_something" in passed[0].nodeid
-        assert "test_method_app" in passed[1].nodeid


More information about the pypy-commit mailing list