diff --git a/setup.cfg b/setup.cfg index e0a01a8..8cff500 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,3 +2,6 @@ [flake8] ignore = E111,E114,E121 max-line-length = 160 + +[aliases] +test=pytest \ No newline at end of file diff --git a/setup.py b/setup.py index f1ff4a8..52de206 100644 --- a/setup.py +++ b/setup.py @@ -18,4 +18,6 @@ packages=find_packages(), install_requires=['PyYAML', 'attrs'], scripts=['kubediff', 'compare-images'], + setup_requires=['pytest-runner',], + tests_require=['pytest',], )