summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/unit/test_oc_process.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove dummy setup/teardown methodsRodolfo Carvalho2017-03-061-8/+0
|
* Clean up test filesRodolfo Carvalho2017-03-061-12/+0
| | | | | They are not executable anymore, and tests are now meant to be run through pytest.
* lib_openshift oc file lookup improvementsJason DeTiberus2017-02-211-1/+110
| | | | | | | | | | | | | | - Move binary file search to separate method called from constructor - Use six.PY3 instaed of sys.version_info - Combine additional paths with the paths from the environment - For py3 pass the combined paths to shutil.which - For py2 explictly search for existance of file from combined paths instead of using distutils.spawn.find_executable and falling back - Use 'oc adm' instead of 'oadm' - Fix generate_validation test issue - fix tests for oc binary location - add tests for file lookup
* Removed unused code. Made tests executable.Kenny Woodson2017-02-211-0/+0
|
* Unset exec bit in tests, add missing requirementsJason DeTiberus2017-02-191-0/+0
| | | | was: separate lib_ unit tests from other unit tests
* Include missing unit tests to test runner configRodolfo Carvalho2017-02-191-0/+483
We were not running those tests in CI, bad :(