Skip to content

Commit

Permalink
basic integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-gbloom committed Aug 20, 2024
1 parent d0d3ecc commit 045ccb4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests_integration/workspaces/test_application_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,12 @@ def test_application_package_bundle(runner, project_directory):

assert result.exit_code == 0
assert "Bundle generated" in result.output


@pytest.mark.integration
def test_application_package_deploy(runner, project_directory):
with project_directory("workspaces_simple"):
result = runner.invoke_with_connection_json(["ws", "deploy", "--entity-id=pkg"])

assert result.exit_code == 0
assert "Deployed successfully" in result.output

0 comments on commit 045ccb4

Please sign in to comment.