summaryrefslogtreecommitdiffstats
path: root/utils/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* 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'