feat: add with_project_meta for runner

This commit is contained in:
debugtalk
2020-05-15 14:53:05 +08:00
parent 5323d9f5c2
commit 0647bd4e25
3 changed files with 24 additions and 17 deletions

View File

@@ -73,11 +73,11 @@ class TestCase(BaseModel):
class ProjectMeta(BaseModel):
debugtalk_py: Text = ""
debugtalk_py: Text = "" # debugtalk.py file content
functions: FunctionsMapping = {}
env: Env = {}
PWD: Text = os.getcwd()
test_path: Text = None # run with specified test path
test_path: Text = None # run with specified test path
class TestsMapping(BaseModel):