summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-22adding tag to update_master_configewolinetz
2017-02-21Merge pull request #3438 from jcantrill/bz_1425321_default_api_portScott Dodson
Bz 1425321 default api port
2017-02-21Merge pull request #3444 from richm/bug-1420219Scott Dodson
Bug 1420219 - No log entry can be found in Kibana UI after deploying logging stacks with ansible
2017-02-21Merge pull request #3436 from tbielawa/hacky_cert_parsingTim Bielawa
Implement fake openssl cert classes
2017-02-21bug 1425321. Default the master api port based on the factsJeff Cantrill
2017-02-21Bug 1420219 - No log entry can be found in Kibana UI after deploying logging ↵Rich Megginson
stacks with ansible https://bugzilla.redhat.com/show_bug.cgi?id=1420219 The elasticsearch config was missing the common data model stanza
2017-02-21Address cert expiry parsing review commentsTim Bielawa
2017-02-21Merge pull request #3377 from kwoodson/router_registryRussell Teague
Adding oc_adm_router and oc_adm_registry to lib_openshift
2017-02-21Merge pull request #3440 from rhcarvalho/update-homepageScott Dodson
Update homepage and fix typo
2017-02-21Fix typoRodolfo Carvalho
2017-02-21Update link to project homepageRodolfo Carvalho
2017-02-21Implement fake openssl cert classesTim Bielawa
2017-02-21Merge pull request #3421 from jhadvig/registred-cmdRussell Teague
rename registered mktemp command
2017-02-21Merge pull request #3431 from jcantrill/bz_1420256_ops_reusing_non_ops_prefixJeff Cantrill
Bz 1420256 ops reusing non ops prefix
2017-02-21Merge pull request #3437 from rhcarvalho/fix-setup-depsScott Dodson
Remove pytest-related dependencies from setup.py
2017-02-21Removed oadm_ references in doc.Kenny Woodson
2017-02-21Remove unused playsjhadvig
2017-02-21Remove pytest-related dependencies from setup.pyRodolfo Carvalho
The `setup_requires` line prevents builds in internal environments without Internet access / pythonX-pytest-runner RPM installed. In fact, we're running tests with `pytest`, outside of `setup.py`, so we don't need those dependencies there. Note: we decided not to run tests through `python setup.py pytest` because pytest-runner was limited in how we can pass arguments to pytest / enable plugins. E.g., I could not get the coverage plugin working when running `python setup.py pytest`.
2017-02-21Merge pull request #3428 from giuseppe/do-not-parse-latestScott Dodson
openshift_facts: handle 'latest' version
2017-02-21Removed unused code. Made tests executable.Kenny Woodson
2017-02-20Fixing docs. Fixed default_cert suggestion.Kenny Woodson
2017-02-20Renamed modules, fixed docs, renamed variables, and cleaned up logic.Kenny Woodson
2017-02-20Renaming registry and router roles to oc_adm_Kenny Woodson
2017-02-20Fixing registry doc and suggestions.Kenny Woodson
2017-02-20Adding router and registry to lib_openshift.Kenny Woodson
2017-02-20bug 142026. Ensure Ops PVC prefix are initialized to empty when ops e…Jeff Cantrill
nabled
2017-02-20Merge pull request #3409 from ewolinetz/logging_fix_verify_apiScott Dodson
Adding missing handler to resolve error that it was not found
2017-02-20Reverting logic for verify api handler to be uniform with other ways we ↵ewolinetz
verify, will be uniformly updated in future
2017-02-20openshift_facts: handle 'latest' versionGiuseppe Scrivano
do not attempt to compare the version using LooseVersion when 'latest' is used. The case openshift_version == None already sets to use the last version, so simply reuse that. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2017-02-20Merge pull request #3427 from ewolinetz/logging_quote_nodeselector_valueScott Dodson
Surrounding node selector values with quotes
2017-02-20Merge pull request #3422 from mtnbikenc/logging-fixRussell Teague
[openshift_logging] Correct logic test for running pods
2017-02-20Surrounding node selector values with quotesewolinetz
2017-02-20Merge pull request #3424 from ashcrow/new-modules-py3Jason DeTiberus
Replace has_key in new modules
2017-02-20Merge pull request #3419 from rhcarvalho/pytestJason DeTiberus
Migrate from nose to pytest
2017-02-20Merge pull request #3426 from rhcarvalho/fix-code-gen-validationJason DeTiberus
Fix validation of generated code
2017-02-20Raise the bar on coverage requirementsRodolfo Carvalho
2017-02-20Accept extra positional arguments in toxRodolfo Carvalho
Example: tox -e py35-ansible22-unit -- --collect-only
2017-02-20Replace nose with pytest (utils)Rodolfo Carvalho
2017-02-20Clean up utils/README.mdRodolfo Carvalho
Remove old way of running tests, plus mirror edits.
2017-02-20Replace nose with pytestRodolfo Carvalho
2017-02-20Extract assertion common to all tests as functionRodolfo Carvalho
2017-02-20Replace nose yield-style tests w/ pytest fixturesRodolfo Carvalho
2017-02-20Configure pytest to run tests and coverageRodolfo Carvalho
2017-02-20Fix validation of generated codeRodolfo Carvalho
Importing modules with the same name will not reload an already imported module. Explicitly reloading the module is the quickest fix.
2017-02-20Make tests run with either nosetests or pytestRodolfo Carvalho
And remove explicit dependencies on nose, replacing with pytest. The former is the way forward, for it is a better maintained test library, and a transitive dependency of `molecule`, the test framework we're using to add integration tests to this repo (work in progress).
2017-02-20Replace assert_equal with plain assertRodolfo Carvalho
In the intention to remove the dependency on nose and use only pytest.
2017-02-20Make usage of short_version/release consistentRodolfo Carvalho
This removes irrelevant differences between the two test files, making it easier to observe similarities.
2017-02-20Reorganize tests and helper functions logicallyRodolfo Carvalho
This is intented to make it easier to read tests top-down. The test methods in both files are sorted somehow logically, and in the same order in both files, to help visualizing the similarities between them with diff tools.
2017-02-20Remove test duplicationRodolfo Carvalho
Consolidate tests for bad input into a single file instead of having the same code in two files.
2017-02-20Move similar test cases togetherRodolfo Carvalho
And reorganize them in such a way to show that there are a bunch of duplicated tests that are exactly the same.