You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the beginning of generator.py, each generator function needs to be imported manually. With some clever Python importing mechanisms, maybe using wildcard (*) at some places, it might be possible to import all generator functions by default.
That way, adding a new test case ("toto") in the mock service would only consist in:
adding the toto.spec.yaml file
creating the generator function file toto.py containing the gen function
The text was updated successfully, but these errors were encountered:
In the beginning of
generator.py
, each generator function needs to be imported manually. With some clever Python importing mechanisms, maybe using wildcard (*
) at some places, it might be possible to import all generator functions by default.That way, adding a new test case ("toto") in the mock service would only consist in:
toto.spec.yaml
filetoto.py
containing thegen
functionThe text was updated successfully, but these errors were encountered: