fix: clear project_meta before each test

This commit is contained in:
debugtalk
2020-06-07 10:59:24 +08:00
parent 9a185e67e3
commit 88712cbc69
4 changed files with 74 additions and 5 deletions

View File

@@ -1,10 +1,12 @@
import unittest
from httprunner import loader
from httprunner.runner import HttpRunner
class TestHttpRunner(unittest.TestCase):
def setUp(self):
loader.project_meta = None
self.runner = HttpRunner()
def test_run_testcase_by_path_request_only(self):