-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
[DPE-2844] New interface indico test and new legacy extensions test #324
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,11 @@ | |
import tarfile | ||
import tempfile | ||
from datetime import datetime | ||
from pathlib import Path | ||
from typing import Dict, Optional, Set, Tuple | ||
|
||
import kubernetes as kubernetes | ||
import psycopg2 | ||
import requests | ||
import yaml | ||
from kubernetes import config | ||
from kubernetes.client.api import core_v1_api | ||
from kubernetes.stream import stream | ||
|
@@ -30,15 +28,14 @@ | |
) | ||
|
||
from tests.integration.helpers import ( | ||
APPLICATION_NAME, | ||
app_name, | ||
db_connect, | ||
get_password, | ||
get_primary, | ||
get_unit_address, | ||
) | ||
|
||
APPLICATION_NAME = "postgresql-test-app" | ||
METADATA = yaml.safe_load(Path("./metadata.yaml").read_text()) | ||
Comment on lines
-40
to
-41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have those in the root helpers module |
||
PORT = 5432 | ||
|
||
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no special behaviour for extensions in the new interface, so just deploying indico and waiting to idle. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New dpw would skip automatically so we no longer need this logic.