summaryrefslogtreecommitdiffstats
path: root/utils/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* More toxificationJason DeTiberus2017-01-101-22/+8
| | | | | | | | | | | | - Move pylint tests to tox - Move yamllint tests to tox - Create separate tox config (and setup.py) for root - bump ansible requirement - unify pylint config - add docs - remove git directory containing old testing tools - install python-six if not present for openshift-facts - add python-six as a dependency for openshift-ansible-utils
* Update manpage version.Tim Bielawa2017-01-091-1/+2
|
* python3 support, add tox for better local testing against multiple python ↵Jason DeTiberus2016-12-201-7/+11
| | | | versions
* YAML LintingRussell Teague2016-12-121-3/+13
| | | | | * Added checks to make ci for yaml linting * Modified y(a)ml files to pass lint checks
* Make 'cover-erase' a config file setting. Move VENT target to pre-req for ↵Tim Bielawa2016-12-091-6/+6
| | | | all ci-* targets
* Fixes to 'make ci'Tim Bielawa2016-12-091-14/+15
| | | | | | | | | | | | | * Fixed: A grep filter was capturing the actual pylint check rc's * Changed: pylint used to print out messages for locally-disabled and file-ignored items * Changed: pylint output format is now 'parseable' * Cleaned up: Pylint was emitting deprecation messages for 'required-attributes' and 'ignore-iface-methods'. They have been removed from the pylintrc file
* Fix coverage not appending new dataTim Bielawa2016-12-081-1/+1
| | | | | | | * Adds '--cover-erase' flag to the 'ci-unittests' target Fixes bug introduced in d7b4265f329591817bac381e2772ae14ac337cea: "Can't add arcs to existing line data" error message
* Speed up 'make ci' and trim the outputTim Bielawa2016-12-071-6/+15
| | | | | | | | | | | | | The virtualenv is conditionally rebuilt now if the test requirements file is modified. This will save upwards of 30+ seconds in iterative 'make ci' runs. The pylint output is now trimmed to exclude disabled tests. The order of the 'ci' target prerequisites has been changed to run the fastest tests first. Closes #2933
* update tests and flake8/pylint fixesJason DeTiberus2016-11-291-21/+8
|
* Fix playbooks, update readme, update default varsTim Bielawa2016-10-201-3/+3
| | | | | | Fix 'make ci' system Add examples
* Try to make boiler plate for cert expiry checkingTim Bielawa2016-10-201-3/+9
|
* Fix conflicts in spec fileTim Bielawa2016-09-291-1/+3
|
* Add a manpage for atomic-openshift-installerTim Bielawa2016-09-271-0/+21
|
* Change test requirements file nameTim Bielawa2016-08-291-2/+2
|
* Try installing setuptools before the rest of the requirementsTim Bielawa2016-08-261-0/+1
|
* Switch to using a requirements.txt file and ensure that setuptools is pinned ↵Tim Bielawa2016-08-261-3/+0
| | | | to the latest version available on RHEL7
* Add missing pip requirement to virtualenvTim Bielawa2016-08-261-1/+1
|
* Fix PyLint errors discovered when upgrading to newer versionTim Bielawa2016-08-261-4/+8
| | | | | | | | | | | | | | | | | | | | | | | * Fixes PyLint to run in the virtualenv used for all tests * Replaced 'LooseVersion' with 'parse_version' from setuptools - This is a work around for the issue in https://github.com/PyCQA/pylint/issues/73 in which pylint can not import disutils.version correctly in a virtualenv. * Removed the unused function 'delete_hosts' which was causing a pylint error as well * Removed a deprecated pylint pragma option, 'bad-builtin' * Fixed some import ordering issues it was picky about * Added another disable for a case where the PyLint suggestion would have us altering the container we would be iterating over * Add code-coverage reports to the unittests with the MINIMUM coverage percentage for success set to 70% - Current test coverage is at 76%
* Enable PEP8 tests by default in the 'make ci' target nowTim Bielawa2016-08-251-9/+1
|
* Makefile includes ci-pyflakes target nowTim Bielawa2016-08-241-1/+7
|
* Fix BZ1368296 by quietly recollecting facts if the cache is removedTim Bielawa2016-08-241-0/+83
* Add python logging * Add testing system via 'make ci'