-
Notifications
You must be signed in to change notification settings - Fork 324
OpenShift 4 tests for for shared_cluster #734
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
base: master
Are you sure you want to change the base?
Conversation
[test] |
Testing Farm results
|
5bbdea8
to
52fc536
Compare
This comment was marked as outdated.
This comment was marked as outdated.
1 similar comment
This comment was marked as outdated.
This comment was marked as outdated.
93b412c
to
f62af89
Compare
Fix obsoleted version and branch [test-openshift][test-openshift-pytest] |
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.
I cannot really verify the tests themselves, but I've found some possible improvements in the Python code.
Let's try to test it after modifications [test-openshift][test-openshift-pytest] |
Fix missing dist-gen generated files [test-openshift][test-openshift-pytest] |
@frenzymadness One more review please. |
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.
It looks good now but there is one thing I don't understand: what is the benefit of having BRANCH_TO_TEST
and BRANCH_TO_MASTER
as individual variables?
Currently we have here:
from constants import BRANCH_TO_MASTER
…
BRANCH_TO_TEST = BRANCH_TO_MASTER
…
if something:
BRANCH_TO_TEST = "fooo"
…
while it can be simplified into something like:
from constants import BRANCH_TO_TEST
…
if something:
BRANCH_TO_TEST = "fooo"
…
Or I might not understand what the name BRANCH_TO_MASTER
means.
Also, it would be nice to have a clean history and some of the changes are spread across multiple commits now.
Rebased against master, squashed commits into three commits. [test-openshift][test-openshift-pytest] |
I still see 14 commits. |
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
Replace function `template_deployed` -> `is_template_deployed` Do not use 'curl' test for HelmCharts. It does not make sense Remove deduplicate function into alone python file Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
27175a7
to
cd486ad
Compare
I see sorry, it was a typo on my side. Now only 3 commits. [test-openshift][test-openshift-pytest] |
No description provided.