test - faster test suite by only initalizing once (#11)

This commit is contained in:
Jeremy L Thompson 2022-09-29 13:43:26 -06:00 committed by GitHub
parent 95d5584ef1
commit a8f010243f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,8 @@ import unittest
import demographic_data_analyzer
class DemographicAnalyzerTestCase(unittest.TestCase):
def setUp(self):
@classmethod
def setUpClass(self):
self.data = demographic_data_analyzer.calculate_demographic_data(print_data = False)
def test_race_count(self):