From 9aac431317e3d162c55571fb005aa175ff024cd3 Mon Sep 17 00:00:00 2001 From: Apoclyps Date: Wed, 24 Jul 2019 07:05:31 +0100 Subject: [PATCH] Adding pytest test runner --- comic/{tests.py => tests/test_models.py} | 0 comic_auth/tests.py | 0 pytest | 3 +++ 3 files changed, 3 insertions(+) rename comic/{tests.py => tests/test_models.py} (100%) delete mode 100644 comic_auth/tests.py create mode 100644 pytest diff --git a/comic/tests.py b/comic/tests/test_models.py similarity index 100% rename from comic/tests.py rename to comic/tests/test_models.py diff --git a/comic_auth/tests.py b/comic_auth/tests.py deleted file mode 100644 index e69de29..0000000 diff --git a/pytest b/pytest new file mode 100644 index 0000000..eab3cfa --- /dev/null +++ b/pytest @@ -0,0 +1,3 @@ +[pytest] +pep8maxlinelength = 119 +python_files = tests.py test_*.py *_tests.py