From f18df4ea275a0c586ff6fc68cbc9fbdfe7c66874 Mon Sep 17 00:00:00 2001 From: Alejandro Cabrera Date: Wed, 15 Jan 2014 13:18:16 -0500 Subject: feat(tox): add support for testing with tox This adds notes in the README and a tox.ini file for use with the tox test manager. This helps greatly towards migrating python-memcached towards python 3.3+ compatibility. --- tests/Makefile | 7 ------- tests/test_setmulti.py | 2 -- 2 files changed, 9 deletions(-) delete mode 100644 tests/Makefile (limited to 'tests') diff --git a/tests/Makefile b/tests/Makefile deleted file mode 100644 index a844aa4..0000000 --- a/tests/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -TESTS = $(wildcard test_*.py) - -test: - @- $(foreach TEST,$(TESTS), \ - echo === Running test: $(TEST); \ - python $(TEST); \ - ) diff --git a/tests/test_setmulti.py b/tests/test_setmulti.py index 815ccfd..3607f02 100644 --- a/tests/test_setmulti.py +++ b/tests/test_setmulti.py @@ -63,5 +63,3 @@ class test_Memcached_Set_Multi(unittest.TestCase): if DEBUG: print 'set_multi({0!r}) -> {1!r}'.format(mapping, bad_keys) - -unittest.main() -- cgit v1.2.1