Makefile 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ########################################################
  2. # Makefile for OpenShift: Atomic Quick Installer
  3. #
  4. # useful targets (not all implemented yet!):
  5. # make clean -- Clean up garbage
  6. # make ci ------------------- Execute CI steps (for travis or jenkins)
  7. ########################################################
  8. # > VARIABLE = value
  9. #
  10. # Normal setting of a variable - values within it are recursively
  11. # expanded when the variable is USED, not when it's declared.
  12. #
  13. # > VARIABLE := value
  14. #
  15. # Setting of a variable with simple expansion of the values inside -
  16. # values within it are expanded at DECLARATION time.
  17. ########################################################
  18. NAME := oo-install
  19. TESTPACKAGE := oo-install
  20. SHORTNAME := ooinstall
  21. sdist: clean
  22. python setup.py sdist
  23. rm -fR $(SHORTNAME).egg-info
  24. clean:
  25. @find . -type f -regex ".*\.py[co]$$" -delete
  26. @find . -type f \( -name "*~" -or -name "#*" \) -delete
  27. @rm -fR build dist rpm-build MANIFEST htmlcov .coverage cover ooinstall.egg-info oo-install
  28. @rm -fR $(NAME)env
  29. viewcover:
  30. xdg-open cover/index.html
  31. virtualenv:
  32. @echo "#############################################"
  33. @echo "# Creating a virtualenv"
  34. @echo "#############################################"
  35. virtualenv $(NAME)env
  36. . $(NAME)env/bin/activate && pip install setuptools==17.1.1
  37. . $(NAME)env/bin/activate && pip install -r test-requirements.txt
  38. # If there are any special things to install do it here
  39. # . $(NAME)env/bin/activate && INSTALL STUFF
  40. ci-unittests:
  41. @echo "#############################################"
  42. @echo "# Running Unit Tests in virtualenv"
  43. @echo "#############################################"
  44. . $(NAME)env/bin/activate && nosetests -v --with-coverage --cover-html --cover-min-percentage=70 --cover-package=$(SHORTNAME) test/
  45. @echo "VIEW CODE COVERAGE REPORT WITH 'xdg-open cover/index.html' or run 'make viewcover'"
  46. ci-pylint:
  47. @echo "#############################################"
  48. @echo "# Running PyLint Tests in virtualenv"
  49. @echo "#############################################"
  50. . $(NAME)env/bin/activate && python -m pylint --rcfile ../git/.pylintrc src/ooinstall/cli_installer.py src/ooinstall/oo_config.py src/ooinstall/openshift_ansible.py src/ooinstall/variants.py
  51. ci-list-deps:
  52. @echo "#############################################"
  53. @echo "# Listing all pip deps"
  54. @echo "#############################################"
  55. . $(NAME)env/bin/activate && pip freeze
  56. ci-pyflakes:
  57. @echo "#################################################"
  58. @echo "# Running Pyflakes Compliance Tests in virtualenv"
  59. @echo "#################################################"
  60. . $(NAME)env/bin/activate && pyflakes src/ooinstall/*.py
  61. ci-pep8:
  62. @echo "#############################################"
  63. @echo "# Running PEP8 Compliance Tests in virtualenv"
  64. @echo "#############################################"
  65. . $(NAME)env/bin/activate && pep8 --ignore=E501,E121,E124 src/$(SHORTNAME)/
  66. ci: clean virtualenv ci-list-deps ci-pep8 ci-pylint ci-pyflakes ci-unittests
  67. :