From 27e960456f75289f09f3facd9893432a233afe96 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 21 Sep 2016 00:14:29 +0300 Subject: [PATCH] Convert tests from unittest to pytest --- project_template/tests/test_test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/project_template/tests/test_test.py b/project_template/tests/test_test.py index d4b9c59..a8a207e 100755 --- a/project_template/tests/test_test.py +++ b/project_template/tests/test_test.py @@ -1,6 +1,5 @@ #! /usr/bin/env python -class TestTest(object): - def test_test(self): - assert True +def test_test(): + assert True -- 2.39.2