We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently ITDE contains automated tests verifying the compatibility of API and CLI. However the current approach creates some problems.
lib/api/spawn_test_environment_with_test_container.py
@no_cli_function def spawn_test_environment_with_test_container(
lib/api/spawn_test_environment:
lib/api/spawn_test_environment
@cli_function def spawn_test_environment()
Potential situations uncovered by the current approach:
PortForwarding
str
int
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently ITDE contains automated tests verifying the compatibility of API and CLI.
However the current approach creates some problems.
Problem1: There are two API branches, while only the second one is verified.
lib/api/spawn_test_environment_with_test_container.py
lib/api/spawn_test_environment
:Problem 2: Is 100% identical interface really desired or required?
Potential situations uncovered by the current approach:
PortForwarding
rather than only basic types such asstr
andint
than can be supplied via CLI.The text was updated successfully, but these errors were encountered: