From 64810023f8fc99fac787adda51202e601c300471 Mon Sep 17 00:00:00 2001 From: Eran Kampf Date: Fri, 31 May 2019 13:32:41 -0700 Subject: [PATCH] Seperate Python3.6+ tests to their own folder --- {tests_asyncio => tests_py36}/test_objecttype.py | 0 tox.ini | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename {tests_asyncio => tests_py36}/test_objecttype.py (100%) diff --git a/tests_asyncio/test_objecttype.py b/tests_py36/test_objecttype.py similarity index 100% rename from tests_asyncio/test_objecttype.py rename to tests_py36/test_objecttype.py diff --git a/tox.ini b/tox.ini index c1dbd01d..57d1f78e 100644 --- a/tox.ini +++ b/tox.ini @@ -10,7 +10,8 @@ setenv = PYTHONPATH = .:{envdir} commands = py{27,py}: py.test --cov=graphene graphene examples {posargs} - py{35,36,37}: py.test --cov=graphene graphene examples tests_asyncio {posargs} + py{35}: py.test --cov=graphene graphene examples tests_asyncio {posargs} + py{36,37}: py.test --cov=graphene graphene examples tests_asyncio tests_py36 {posargs} [testenv:pre-commit] basepython=python3.6