Skip to content

Commit

Permalink
added pkl parser test to test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
roedoejet committed Aug 16, 2019
1 parent 8981180 commit 84f1a3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mtd/tests/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from mtd.tests.test_dict_parser import DictParserTest
from mtd.tests.test_json_parser import JsonParserTest
from mtd.tests.test_request_parser import RequestsParserTest
from mtd.tests.test_pkl_parser import PklParserTest
from mtd.tests.test_psv_parser import PsvParserTest
from mtd.tests.test_tsv_parser import TsvParserTest
from mtd.tests.test_xlsx_parser import XlsxParserTest
Expand Down Expand Up @@ -37,7 +38,7 @@
# for test in [JsonParserTest]
# for test in (CsvParserTest, PsvParserTest, TsvParserTest, XlsxParserTest)
# for test in [XlsxParserTest]
for test in (CsvParserTest, DictParserTest, JsonParserTest, PsvParserTest, RequestsParserTest, TsvParserTest, XlsxParserTest, XmlParserTest)
for test in (CsvParserTest, DictParserTest, JsonParserTest, PklParserTest, PsvParserTest, RequestsParserTest, TsvParserTest, XlsxParserTest, XmlParserTest)
]

processor_tests = [
Expand Down

0 comments on commit 84f1a3d

Please sign in to comment.