feat: cache loading project meta

This commit is contained in:
debugtalk
2020-05-15 11:12:54 +08:00
parent 8ab3968fb5
commit 75f924c683
3 changed files with 19 additions and 14 deletions

View File

@@ -77,8 +77,8 @@ class ProjectMeta(BaseModel):
variables: VariablesMapping = {}
functions: FunctionsMapping = {}
env: Env = {}
PWD: Text
test_path: Text
PWD: Text = None
test_path: Text = None # run with specified test path
class TestsMapping(BaseModel):