From 4ba6c17f2987336e53b6beeb907a6c94e2a6cf73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Ferreira=20Pires=20de=20Paiva?= Date: Tue, 12 Oct 2021 18:58:05 -0300 Subject: [PATCH] chore: adds test_certidao to test_all --- tests/test_all.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_all.py b/tests/test_all.py index 41c0b54..5895450 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -1,5 +1,6 @@ import unittest # Classes +import tests.test_certidao import tests.test_cpf import tests.test_cnh import tests.test_cns @@ -13,6 +14,7 @@ def suite(): loader = unittest.TestLoader() test_suite = unittest.TestSuite() + test_suite.addTests(loader.loadTestsFromModule(tests.test_certidao)) test_suite.addTests(loader.loadTestsFromModule(tests.test_cpf)) test_suite.addTests(loader.loadTestsFromModule(tests.test_cnh)) test_suite.addTests(loader.loadTestsFromModule(tests.test_cns))